aboutsummaryrefslogtreecommitdiffstats
path: root/worker/jmap
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 /worker/jmap
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 'worker/jmap')
-rw-r--r--worker/jmap/cache/cache.go2
-rw-r--r--worker/jmap/cache/folder_contents.go2
-rw-r--r--worker/jmap/push.go2
-rw-r--r--worker/jmap/send.go2
4 files changed, 4 insertions, 4 deletions
diff --git a/worker/jmap/cache/cache.go b/worker/jmap/cache/cache.go
index 6d815177..429dafe9 100644
--- a/worker/jmap/cache/cache.go
+++ b/worker/jmap/cache/cache.go
@@ -6,8 +6,8 @@ import (
"path"
"strings"
+ "git.sr.ht/~rjarry/aerc/lib/log"
"git.sr.ht/~rjarry/aerc/lib/xdg"
- "git.sr.ht/~rjarry/aerc/log"
"github.com/syndtr/goleveldb/leveldb"
"github.com/syndtr/goleveldb/leveldb/util"
)
diff --git a/worker/jmap/cache/folder_contents.go b/worker/jmap/cache/folder_contents.go
index 46a36607..e0edf77d 100644
--- a/worker/jmap/cache/folder_contents.go
+++ b/worker/jmap/cache/folder_contents.go
@@ -3,7 +3,7 @@ package cache
import (
"reflect"
- "git.sr.ht/~rjarry/aerc/log"
+ "git.sr.ht/~rjarry/aerc/lib/log"
"git.sr.ht/~rjarry/aerc/worker/types"
"git.sr.ht/~rockorager/go-jmap"
)
diff --git a/worker/jmap/push.go b/worker/jmap/push.go
index 2f7b05e6..cb3394d1 100644
--- a/worker/jmap/push.go
+++ b/worker/jmap/push.go
@@ -5,7 +5,7 @@ import (
"sort"
"time"
- "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/jmap/cache"
"git.sr.ht/~rjarry/aerc/worker/types"
diff --git a/worker/jmap/send.go b/worker/jmap/send.go
index 0d8bb23f..7f5ffc4f 100644
--- a/worker/jmap/send.go
+++ b/worker/jmap/send.go
@@ -5,7 +5,7 @@ import (
"io"
"strings"
- "git.sr.ht/~rjarry/aerc/log"
+ "git.sr.ht/~rjarry/aerc/lib/log"
"git.sr.ht/~rjarry/aerc/worker/types"
"git.sr.ht/~rockorager/go-jmap"
"git.sr.ht/~rockorager/go-jmap/mail/email"