aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/x.go
diff options
context:
space:
mode:
authorOphestra Umiker <cat@ophivana.moe>2024-09-16 20:32:07 +0900
committerOphestra Umiker <cat@ophivana.moe>2024-09-16 20:32:07 +0900
commit03c24c51224e85eb96527a512f5f0483464fc810 (patch)
tree2feede4d9448fc881b0d4b8a193c0c82f6627221 /internal/app/x.go
parent8bdae74ebe172239573bab9fca634cf350cbd29d (diff)
move acl and xcb binding packages to top level
These packages are reasonably clean and do not interact with other packages. Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'internal/app/x.go')
-rw-r--r--internal/app/x.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/app/x.go b/internal/app/x.go
index 07034026..f198fee3 100644
--- a/internal/app/x.go
+++ b/internal/app/x.go
@@ -2,12 +2,12 @@ package app
import (
"fmt"
- "git.ophivana.moe/cat/fortify/internal/final"
"os"
+ "git.ophivana.moe/cat/fortify/internal/final"
"git.ophivana.moe/cat/fortify/internal/state"
"git.ophivana.moe/cat/fortify/internal/verbose"
- "git.ophivana.moe/cat/fortify/internal/xcb"
+ "git.ophivana.moe/cat/fortify/xcb"
)
const display = "DISPLAY"