aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2024-02-13 22:44:25 +0100
committerRobin Jarry <robin@jarry.cc>2024-02-14 23:04:38 +0100
commit8edf7b0e4d386e5b4b4f052c88a781e40b1f1d30 (patch)
tree21db1c37692f8210f0b440c4c8e73604bf58d2bf /commands
parent3aa8b6308482d2e3feea0fecb065190cf05c2468 (diff)
downloadaerc-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')
-rw-r--r--commands/account/export-mbox.go2
-rw-r--r--commands/account/import-mbox.go2
-rw-r--r--commands/account/search.go2
-rw-r--r--commands/commands.go2
-rw-r--r--commands/completion_helpers.go2
-rw-r--r--commands/compose/attach.go2
-rw-r--r--commands/compose/postpone.go2
-rw-r--r--commands/compose/send.go2
-rw-r--r--commands/exec.go2
-rw-r--r--commands/history.go2
-rw-r--r--commands/menu.go2
-rw-r--r--commands/msg/archive.go2
-rw-r--r--commands/msg/bounce.go2
-rw-r--r--commands/msg/copy.go2
-rw-r--r--commands/msg/envelope.go2
-rw-r--r--commands/msg/forward.go2
-rw-r--r--commands/msg/invite.go2
-rw-r--r--commands/msg/move.go2
-rw-r--r--commands/msg/pipe.go2
-rw-r--r--commands/msg/recall.go2
-rw-r--r--commands/msg/reply.go2
-rw-r--r--commands/msg/unsubscribe.go2
-rw-r--r--commands/msgview/open-link.go2
-rw-r--r--commands/msgview/open.go2
-rw-r--r--commands/msgview/save.go2
-rw-r--r--commands/patch/apply.go2
-rw-r--r--commands/patch/drop.go2
-rw-r--r--commands/patch/rebase.go2
-rw-r--r--commands/patch/switch.go2
-rw-r--r--commands/patch/unlink.go2
-rw-r--r--commands/util.go2
31 files changed, 31 insertions, 31 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"
)
diff --git a/commands/commands.go b/commands/commands.go
index b617bade..ab9c3e63 100644
--- a/commands/commands.go
+++ b/commands/commands.go
@@ -13,9 +13,9 @@ import (
"git.sr.ht/~rjarry/aerc/app"
"git.sr.ht/~rjarry/aerc/config"
+ "git.sr.ht/~rjarry/aerc/lib/log"
"git.sr.ht/~rjarry/aerc/lib/state"
"git.sr.ht/~rjarry/aerc/lib/templates"
- "git.sr.ht/~rjarry/aerc/log"
"git.sr.ht/~rjarry/aerc/models"
)
diff --git a/commands/completion_helpers.go b/commands/completion_helpers.go
index b7ba6780..02c13526 100644
--- a/commands/completion_helpers.go
+++ b/commands/completion_helpers.go
@@ -8,7 +8,7 @@ import (
"git.sr.ht/~rjarry/aerc/app"
"git.sr.ht/~rjarry/aerc/completer"
"git.sr.ht/~rjarry/aerc/config"
- "git.sr.ht/~rjarry/aerc/log"
+ "git.sr.ht/~rjarry/aerc/lib/log"
)
// GetAddress uses the address-book-cmd for address completion
diff --git a/commands/compose/attach.go b/commands/compose/attach.go
index fa9590c9..2cf43e80 100644
--- a/commands/compose/attach.go
+++ b/commands/compose/attach.go
@@ -14,9 +14,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/ui"
"git.sr.ht/~rjarry/aerc/lib/xdg"
- "git.sr.ht/~rjarry/aerc/log"
"github.com/pkg/errors"
)
diff --git a/commands/compose/postpone.go b/commands/compose/postpone.go
index 3c23eda3..d5b3ed2f 100644
--- a/commands/compose/postpone.go
+++ b/commands/compose/postpone.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/compose/send.go b/commands/compose/send.go
index f8a0480f..2e7590a0 100644
--- a/commands/compose/send.go
+++ b/commands/compose/send.go
@@ -15,8 +15,8 @@ import (
"git.sr.ht/~rjarry/aerc/commands/mode"
"git.sr.ht/~rjarry/aerc/commands/msg"
"git.sr.ht/~rjarry/aerc/lib/hooks"
+ "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/models"
"git.sr.ht/~rjarry/aerc/worker/types"
"github.com/emersion/go-message/mail"
diff --git a/commands/exec.go b/commands/exec.go
index 874b2714..ac33cf21 100644
--- a/commands/exec.go
+++ b/commands/exec.go
@@ -7,7 +7,7 @@ import (
"time"
"git.sr.ht/~rjarry/aerc/app"
- "git.sr.ht/~rjarry/aerc/log"
+ "git.sr.ht/~rjarry/aerc/lib/log"
)
type ExecCmd struct {
diff --git a/commands/history.go b/commands/history.go
index cc85f3ba..0a7d6894 100644
--- a/commands/history.go
+++ b/commands/history.go
@@ -8,8 +8,8 @@ import (
"os"
"sync"
+ "git.sr.ht/~rjarry/aerc/lib/log"
"git.sr.ht/~rjarry/aerc/lib/xdg"
- "git.sr.ht/~rjarry/aerc/log"
)
type cmdHistory struct {
diff --git a/commands/menu.go b/commands/menu.go
index e14e4e83..6ebba81f 100644
--- a/commands/menu.go
+++ b/commands/menu.go
@@ -9,8 +9,8 @@ import (
"git.sr.ht/~rjarry/aerc/app"
"git.sr.ht/~rjarry/aerc/config"
+ "git.sr.ht/~rjarry/aerc/lib/log"
"git.sr.ht/~rjarry/aerc/lib/ui"
- "git.sr.ht/~rjarry/aerc/log"
"git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~rjarry/go-opt"
)
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"
)
diff --git a/commands/msgview/open-link.go b/commands/msgview/open-link.go
index e64e6e2f..9f02f795 100644
--- a/commands/msgview/open-link.go
+++ b/commands/msgview/open-link.go
@@ -7,7 +7,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"
)
type OpenLink struct {
diff --git a/commands/msgview/open.go b/commands/msgview/open.go
index 3943b21a..85005031 100644
--- a/commands/msgview/open.go
+++ b/commands/msgview/open.go
@@ -10,7 +10,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"
)
type Open struct {
diff --git a/commands/msgview/save.go b/commands/msgview/save.go
index d9320293..1a219e93 100644
--- a/commands/msgview/save.go
+++ b/commands/msgview/save.go
@@ -12,8 +12,8 @@ import (
"git.sr.ht/~rjarry/aerc/app"
"git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~rjarry/aerc/config"
+ "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"
)
diff --git a/commands/patch/apply.go b/commands/patch/apply.go
index 5ffe86d1..c9818876 100644
--- a/commands/patch/apply.go
+++ b/commands/patch/apply.go
@@ -9,9 +9,9 @@ import (
"git.sr.ht/~rjarry/aerc/app"
"git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~rjarry/aerc/commands/msg"
+ "git.sr.ht/~rjarry/aerc/lib/log"
"git.sr.ht/~rjarry/aerc/lib/pama"
"git.sr.ht/~rjarry/aerc/lib/pama/models"
- "git.sr.ht/~rjarry/aerc/log"
)
type Apply struct {
diff --git a/commands/patch/drop.go b/commands/patch/drop.go
index 06457c72..a888568a 100644
--- a/commands/patch/drop.go
+++ b/commands/patch/drop.go
@@ -6,8 +6,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/pama"
- "git.sr.ht/~rjarry/aerc/log"
)
type Drop struct {
diff --git a/commands/patch/rebase.go b/commands/patch/rebase.go
index 65aa580a..45136935 100644
--- a/commands/patch/rebase.go
+++ b/commands/patch/rebase.go
@@ -14,10 +14,10 @@ import (
"git.sr.ht/~rjarry/aerc/app"
"git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~rjarry/aerc/config"
+ "git.sr.ht/~rjarry/aerc/lib/log"
"git.sr.ht/~rjarry/aerc/lib/pama"
"git.sr.ht/~rjarry/aerc/lib/pama/models"
"git.sr.ht/~rjarry/aerc/lib/ui"
- "git.sr.ht/~rjarry/aerc/log"
)
type Rebase struct {
diff --git a/commands/patch/switch.go b/commands/patch/switch.go
index aab2acb6..dc9138d8 100644
--- a/commands/patch/switch.go
+++ b/commands/patch/switch.go
@@ -6,8 +6,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/pama"
- "git.sr.ht/~rjarry/aerc/log"
)
type Switch struct {
diff --git a/commands/patch/unlink.go b/commands/patch/unlink.go
index 4a78281e..2d24d25b 100644
--- a/commands/patch/unlink.go
+++ b/commands/patch/unlink.go
@@ -6,8 +6,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/pama"
- "git.sr.ht/~rjarry/aerc/log"
)
type Unlink struct {
diff --git a/commands/util.go b/commands/util.go
index 0f6c7cb6..39c9dafc 100644
--- a/commands/util.go
+++ b/commands/util.go
@@ -14,8 +14,8 @@ import (
"git.sr.ht/~rjarry/aerc/app"
"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"
"git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~rjarry/aerc/worker/types"
"git.sr.ht/~rjarry/go-opt"