diff options
author | Robin Jarry <robin@jarry.cc> | 2024-02-13 22:44:25 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-02-14 23:04:38 +0100 |
commit | 8edf7b0e4d386e5b4b4f052c88a781e40b1f1d30 (patch) | |
tree | 21db1c37692f8210f0b440c4c8e73604bf58d2bf /commands/account | |
parent | 3aa8b6308482d2e3feea0fecb065190cf05c2468 (diff) | |
download | aerc-8edf7b0e4d386e5b4b4f052c88a781e40b1f1d30.tar.gz |
log: move package to lib
This has nothing to do at the root of the source tree.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Acked-by: Bence Ferdinandy <bence@ferdinandy.com>
Diffstat (limited to 'commands/account')
-rw-r--r-- | commands/account/export-mbox.go | 2 | ||||
-rw-r--r-- | commands/account/import-mbox.go | 2 | ||||
-rw-r--r-- | commands/account/search.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/commands/account/export-mbox.go b/commands/account/export-mbox.go index 53f22d87..021eecc6 100644 --- a/commands/account/export-mbox.go +++ b/commands/account/export-mbox.go @@ -11,8 +11,8 @@ import ( "git.sr.ht/~rjarry/aerc/app" "git.sr.ht/~rjarry/aerc/commands" "git.sr.ht/~rjarry/aerc/lib" + "git.sr.ht/~rjarry/aerc/lib/log" "git.sr.ht/~rjarry/aerc/lib/xdg" - "git.sr.ht/~rjarry/aerc/log" mboxer "git.sr.ht/~rjarry/aerc/worker/mbox" "git.sr.ht/~rjarry/aerc/worker/types" ) diff --git a/commands/account/import-mbox.go b/commands/account/import-mbox.go index 2d9c81f9..1b05f16d 100644 --- a/commands/account/import-mbox.go +++ b/commands/account/import-mbox.go @@ -11,8 +11,8 @@ import ( "git.sr.ht/~rjarry/aerc/app" "git.sr.ht/~rjarry/aerc/commands" + "git.sr.ht/~rjarry/aerc/lib/log" "git.sr.ht/~rjarry/aerc/lib/xdg" - "git.sr.ht/~rjarry/aerc/log" "git.sr.ht/~rjarry/aerc/models" mboxer "git.sr.ht/~rjarry/aerc/worker/mbox" "git.sr.ht/~rjarry/aerc/worker/types" diff --git a/commands/account/search.go b/commands/account/search.go index cd449dfa..d4e04803 100644 --- a/commands/account/search.go +++ b/commands/account/search.go @@ -9,10 +9,10 @@ import ( "git.sr.ht/~rjarry/aerc/app" "git.sr.ht/~rjarry/aerc/commands" + "git.sr.ht/~rjarry/aerc/lib/log" "git.sr.ht/~rjarry/aerc/lib/parse" "git.sr.ht/~rjarry/aerc/lib/state" "git.sr.ht/~rjarry/aerc/lib/ui" - "git.sr.ht/~rjarry/aerc/log" "git.sr.ht/~rjarry/aerc/models" "git.sr.ht/~rjarry/aerc/worker/types" ) |