From 8edf7b0e4d386e5b4b4f052c88a781e40b1f1d30 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Tue, 13 Feb 2024 22:44:25 +0100 Subject: log: move package to lib This has nothing to do at the root of the source tree. Signed-off-by: Robin Jarry Acked-by: Bence Ferdinandy --- worker/jmap/cache/cache.go | 2 +- worker/jmap/cache/folder_contents.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'worker/jmap/cache') 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" ) -- cgit