aboutsummaryrefslogtreecommitdiffstats
path: root/app
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 /app
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 'app')
-rw-r--r--app/account-wizard.go2
-rw-r--r--app/account.go2
-rw-r--r--app/aerc.go2
-rw-r--r--app/compose.go2
-rw-r--r--app/dirlist.go2
-rw-r--r--app/dirtree.go2
-rw-r--r--app/listbox.go2
-rw-r--r--app/msglist.go2
-rw-r--r--app/msgviewer.go2
-rw-r--r--app/spinner.go2
-rw-r--r--app/status.go2
-rw-r--r--app/terminal.go2
12 files changed, 12 insertions, 12 deletions
diff --git a/app/account-wizard.go b/app/account-wizard.go
index 36bc0392..9c216a19 100644
--- a/app/account-wizard.go
+++ b/app/account-wizard.go
@@ -18,9 +18,9 @@ import (
"git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~rjarry/aerc/lib/format"
+ "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"
"git.sr.ht/~rockorager/vaxis"
)
diff --git a/app/account.go b/app/account.go
index 4b5fa30b..2bdf970a 100644
--- a/app/account.go
+++ b/app/account.go
@@ -10,12 +10,12 @@ import (
"git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~rjarry/aerc/lib/hooks"
+ "git.sr.ht/~rjarry/aerc/lib/log"
"git.sr.ht/~rjarry/aerc/lib/marker"
"git.sr.ht/~rjarry/aerc/lib/sort"
"git.sr.ht/~rjarry/aerc/lib/state"
"git.sr.ht/~rjarry/aerc/lib/templates"
"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"
"git.sr.ht/~rjarry/aerc/worker/types"
diff --git a/app/aerc.go b/app/aerc.go
index fd36b72b..97604b17 100644
--- a/app/aerc.go
+++ b/app/aerc.go
@@ -19,8 +19,8 @@ import (
"git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~rjarry/aerc/lib/crypto"
+ "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/aerc/worker/types"
)
diff --git a/app/compose.go b/app/compose.go
index c71c7013..451981cd 100644
--- a/app/compose.go
+++ b/app/compose.go
@@ -23,11 +23,11 @@ import (
"git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~rjarry/aerc/lib/format"
+ "git.sr.ht/~rjarry/aerc/lib/log"
"git.sr.ht/~rjarry/aerc/lib/send"
"git.sr.ht/~rjarry/aerc/lib/state"
"git.sr.ht/~rjarry/aerc/lib/templates"
"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"
"git.sr.ht/~rockorager/vaxis"
diff --git a/app/dirlist.go b/app/dirlist.go
index d4171a74..898b8130 100644
--- a/app/dirlist.go
+++ b/app/dirlist.go
@@ -10,10 +10,10 @@ import (
"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/state"
"git.sr.ht/~rjarry/aerc/lib/templates"
"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"
"git.sr.ht/~rockorager/vaxis"
diff --git a/app/dirtree.go b/app/dirtree.go
index 995c8889..53ab4aad 100644
--- a/app/dirtree.go
+++ b/app/dirtree.go
@@ -9,9 +9,9 @@ import (
"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/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"
"git.sr.ht/~rockorager/vaxis"
diff --git a/app/listbox.go b/app/listbox.go
index 5568d36b..90227122 100644
--- a/app/listbox.go
+++ b/app/listbox.go
@@ -7,8 +7,8 @@ import (
"sync"
"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/~rockorager/vaxis"
"github.com/mattn/go-runewidth"
)
diff --git a/app/msglist.go b/app/msglist.go
index e46f3f24..4cdf614a 100644
--- a/app/msglist.go
+++ b/app/msglist.go
@@ -11,9 +11,9 @@ import (
"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/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"
"git.sr.ht/~rockorager/vaxis"
diff --git a/app/msgviewer.go b/app/msgviewer.go
index a22d2c15..7b24e756 100644
--- a/app/msgviewer.go
+++ b/app/msgviewer.go
@@ -19,9 +19,9 @@ import (
"git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~rjarry/aerc/lib/auth"
"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/lib/ui"
- "git.sr.ht/~rjarry/aerc/log"
"git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~rjarry/go-opt"
"git.sr.ht/~rockorager/vaxis"
diff --git a/app/spinner.go b/app/spinner.go
index 2c675e3c..28cee9b8 100644
--- a/app/spinner.go
+++ b/app/spinner.go
@@ -6,8 +6,8 @@ import (
"time"
"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/~rockorager/vaxis"
)
diff --git a/app/status.go b/app/status.go
index 952a3b98..f1400136 100644
--- a/app/status.go
+++ b/app/status.go
@@ -8,10 +8,10 @@ import (
"github.com/mattn/go-runewidth"
"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/lib/ui"
- "git.sr.ht/~rjarry/aerc/log"
"git.sr.ht/~rockorager/vaxis"
)
diff --git a/app/terminal.go b/app/terminal.go
index 2527ef1a..7f9857dc 100644
--- a/app/terminal.go
+++ b/app/terminal.go
@@ -5,8 +5,8 @@ import (
"sync/atomic"
"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/~rockorager/vaxis"
"git.sr.ht/~rockorager/vaxis/widgets/term"
)