diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-09-16 20:32:07 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-09-16 20:32:07 +0900 |
| commit | 03c24c51224e85eb96527a512f5f0483464fc810 (patch) | |
| tree | 2feede4d9448fc881b0d4b8a193c0c82f6627221 /internal/final | |
| parent | 8bdae74ebe172239573bab9fca634cf350cbd29d (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/final')
| -rw-r--r-- | internal/final/exit.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/internal/final/exit.go b/internal/final/exit.go index 86cc2e71..063d8d04 100644 --- a/internal/final/exit.go +++ b/internal/final/exit.go @@ -3,12 +3,13 @@ package final import ( "errors" "fmt" - "git.ophivana.moe/cat/fortify/internal/acl" - "git.ophivana.moe/cat/fortify/internal/state" - "git.ophivana.moe/cat/fortify/internal/verbose" - "git.ophivana.moe/cat/fortify/internal/xcb" "io/fs" "os" + + "git.ophivana.moe/cat/fortify/acl" + "git.ophivana.moe/cat/fortify/internal/state" + "git.ophivana.moe/cat/fortify/internal/verbose" + "git.ophivana.moe/cat/fortify/xcb" ) func Fatal(msg ...any) { |
