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/msg | |
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/msg')
-rw-r--r-- | commands/msg/archive.go | 2 | ||||
-rw-r--r-- | commands/msg/bounce.go | 2 | ||||
-rw-r--r-- | commands/msg/copy.go | 2 | ||||
-rw-r--r-- | commands/msg/envelope.go | 2 | ||||
-rw-r--r-- | commands/msg/forward.go | 2 | ||||
-rw-r--r-- | commands/msg/invite.go | 2 | ||||
-rw-r--r-- | commands/msg/move.go | 2 | ||||
-rw-r--r-- | commands/msg/pipe.go | 2 | ||||
-rw-r--r-- | commands/msg/recall.go | 2 | ||||
-rw-r--r-- | commands/msg/reply.go | 2 | ||||
-rw-r--r-- | commands/msg/unsubscribe.go | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/commands/msg/archive.go b/commands/msg/archive.go index 49f375a8..25f68c8a 100644 --- a/commands/msg/archive.go +++ b/commands/msg/archive.go @@ -8,7 +8,7 @@ import ( "git.sr.ht/~rjarry/aerc/app" "git.sr.ht/~rjarry/aerc/commands" - "git.sr.ht/~rjarry/aerc/log" + "git.sr.ht/~rjarry/aerc/lib/log" "git.sr.ht/~rjarry/aerc/models" "git.sr.ht/~rjarry/aerc/worker/types" ) diff --git a/commands/msg/bounce.go b/commands/msg/bounce.go index 46445bdd..d999007d 100644 --- a/commands/msg/bounce.go +++ b/commands/msg/bounce.go @@ -13,8 +13,8 @@ import ( "git.sr.ht/~rjarry/aerc/app" "git.sr.ht/~rjarry/aerc/commands" "git.sr.ht/~rjarry/aerc/commands/mode" + "git.sr.ht/~rjarry/aerc/lib/log" "git.sr.ht/~rjarry/aerc/lib/send" - "git.sr.ht/~rjarry/aerc/log" "git.sr.ht/~rjarry/aerc/worker/types" ) diff --git a/commands/msg/copy.go b/commands/msg/copy.go index ed963707..cd13421f 100644 --- a/commands/msg/copy.go +++ b/commands/msg/copy.go @@ -8,7 +8,7 @@ import ( "git.sr.ht/~rjarry/aerc/app" "git.sr.ht/~rjarry/aerc/commands" "git.sr.ht/~rjarry/aerc/lib" - "git.sr.ht/~rjarry/aerc/log" + "git.sr.ht/~rjarry/aerc/lib/log" "git.sr.ht/~rjarry/aerc/models" "git.sr.ht/~rjarry/aerc/worker/types" ) diff --git a/commands/msg/envelope.go b/commands/msg/envelope.go index 24867fc1..f95af959 100644 --- a/commands/msg/envelope.go +++ b/commands/msg/envelope.go @@ -8,7 +8,7 @@ import ( "git.sr.ht/~rjarry/aerc/app" "git.sr.ht/~rjarry/aerc/commands" "git.sr.ht/~rjarry/aerc/lib/format" - "git.sr.ht/~rjarry/aerc/log" + "git.sr.ht/~rjarry/aerc/lib/log" "git.sr.ht/~rjarry/aerc/models" "github.com/emersion/go-message/mail" ) diff --git a/commands/msg/forward.go b/commands/msg/forward.go index bc3f9a68..956d5a38 100644 --- a/commands/msg/forward.go +++ b/commands/msg/forward.go @@ -18,7 +18,7 @@ import ( "git.sr.ht/~rjarry/aerc/lib" "git.sr.ht/~rjarry/aerc/lib/crypto" "git.sr.ht/~rjarry/aerc/lib/format" - "git.sr.ht/~rjarry/aerc/log" + "git.sr.ht/~rjarry/aerc/lib/log" "git.sr.ht/~rjarry/aerc/models" "git.sr.ht/~rjarry/aerc/worker/types" "github.com/emersion/go-message/mail" diff --git a/commands/msg/invite.go b/commands/msg/invite.go index 862af23c..0d45c43f 100644 --- a/commands/msg/invite.go +++ b/commands/msg/invite.go @@ -11,7 +11,7 @@ import ( "git.sr.ht/~rjarry/aerc/lib" "git.sr.ht/~rjarry/aerc/lib/calendar" "git.sr.ht/~rjarry/aerc/lib/format" - "git.sr.ht/~rjarry/aerc/log" + "git.sr.ht/~rjarry/aerc/lib/log" "git.sr.ht/~rjarry/aerc/models" "github.com/emersion/go-message/mail" ) diff --git a/commands/msg/move.go b/commands/msg/move.go index 704ca6e6..66738c68 100644 --- a/commands/msg/move.go +++ b/commands/msg/move.go @@ -9,9 +9,9 @@ import ( "git.sr.ht/~rjarry/aerc/commands" "git.sr.ht/~rjarry/aerc/config" "git.sr.ht/~rjarry/aerc/lib" + "git.sr.ht/~rjarry/aerc/lib/log" "git.sr.ht/~rjarry/aerc/lib/marker" "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" ) diff --git a/commands/msg/pipe.go b/commands/msg/pipe.go index 8b47c418..7048e6b8 100644 --- a/commands/msg/pipe.go +++ b/commands/msg/pipe.go @@ -12,7 +12,7 @@ import ( "git.sr.ht/~rjarry/aerc/app" "git.sr.ht/~rjarry/aerc/commands" - "git.sr.ht/~rjarry/aerc/log" + "git.sr.ht/~rjarry/aerc/lib/log" mboxer "git.sr.ht/~rjarry/aerc/worker/mbox" "git.sr.ht/~rjarry/aerc/worker/types" ) diff --git a/commands/msg/recall.go b/commands/msg/recall.go index e5cd2ed1..0c7f6b53 100644 --- a/commands/msg/recall.go +++ b/commands/msg/recall.go @@ -14,7 +14,7 @@ import ( "git.sr.ht/~rjarry/aerc/commands" "git.sr.ht/~rjarry/aerc/config" "git.sr.ht/~rjarry/aerc/lib" - "git.sr.ht/~rjarry/aerc/log" + "git.sr.ht/~rjarry/aerc/lib/log" "git.sr.ht/~rjarry/aerc/models" "git.sr.ht/~rjarry/aerc/worker/types" ) diff --git a/commands/msg/reply.go b/commands/msg/reply.go index ee31a37e..7a51a051 100644 --- a/commands/msg/reply.go +++ b/commands/msg/reply.go @@ -15,8 +15,8 @@ import ( "git.sr.ht/~rjarry/aerc/lib" "git.sr.ht/~rjarry/aerc/lib/crypto" "git.sr.ht/~rjarry/aerc/lib/format" + "git.sr.ht/~rjarry/aerc/lib/log" "git.sr.ht/~rjarry/aerc/lib/parse" - "git.sr.ht/~rjarry/aerc/log" "git.sr.ht/~rjarry/aerc/models" "github.com/danwakefield/fnmatch" "github.com/emersion/go-message/mail" diff --git a/commands/msg/unsubscribe.go b/commands/msg/unsubscribe.go index 7ba497b4..3a9e2f51 100644 --- a/commands/msg/unsubscribe.go +++ b/commands/msg/unsubscribe.go @@ -12,7 +12,7 @@ import ( "git.sr.ht/~rjarry/aerc/commands" "git.sr.ht/~rjarry/aerc/config" "git.sr.ht/~rjarry/aerc/lib" - "git.sr.ht/~rjarry/aerc/log" + "git.sr.ht/~rjarry/aerc/lib/log" "github.com/emersion/go-message/mail" ) |