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 --- lib/watchers/fsevents.go | 2 +- lib/watchers/inotify.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/watchers') diff --git a/lib/watchers/fsevents.go b/lib/watchers/fsevents.go index 905db2af..a273dcb0 100644 --- a/lib/watchers/fsevents.go +++ b/lib/watchers/fsevents.go @@ -6,7 +6,7 @@ package watchers import ( "time" - "git.sr.ht/~rjarry/aerc/log" + "git.sr.ht/~rjarry/aerc/lib/log" "github.com/fsnotify/fsevents" ) diff --git a/lib/watchers/inotify.go b/lib/watchers/inotify.go index 22290307..dd34fc4f 100644 --- a/lib/watchers/inotify.go +++ b/lib/watchers/inotify.go @@ -4,7 +4,7 @@ package watchers import ( - "git.sr.ht/~rjarry/aerc/log" + "git.sr.ht/~rjarry/aerc/lib/log" "github.com/fsnotify/fsnotify" ) -- cgit