aboutsummaryrefslogtreecommitdiffstats
path: root/commands/patch
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/patch
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/patch')
-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
5 files changed, 5 insertions, 5 deletions
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 {