Compare commits

..

2 Commits

Author SHA1 Message Date
Ophestra 5d523f50c2
move acl and xcb binding packages to top level
These packages are reasonably clean and do not interact with other packages.
2024-09-16 20:24:02 +09:00
Ophestra 91fe983fdb
final: refactor for removal of system package and reduction of interactions to state package
State query command has been moved to main where it belongs, "system" information are now fetched in app.New and stored in *App with accessors for relevant values. Exit (cleanup-related) functions are separated into its dedicated "final" package.
2024-09-16 20:11:02 +09:00
1 changed files with 1 additions and 2 deletions

View File

@ -5,13 +5,12 @@ import (
"errors"
"flag"
"fmt"
"git.ophivana.moe/cat/fortify/internal/final"
"io/fs"
"os"
"strconv"
"syscall"
"git.ophivana.moe/cat/fortify/internal/final"
"git.ophivana.moe/cat/fortify/dbus"
"git.ophivana.moe/cat/fortify/internal/app"
"git.ophivana.moe/cat/fortify/internal/verbose"