summary refs log tree commit diff stats
path: root/commands/compose
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2021-11-05 10:19:46 +0100
committerRobin Jarry <robin@jarry.cc>2021-11-05 10:21:45 +0100
commit0d645bcebda8d764c4f21f71ded1e3627d6e8837 (patch)
tree5869c22738e34d8da223c06b5a5289f08825a8f7 /commands/compose
parentb2e9df623f638ecda539ec69f30a31b6693df2d1 (diff)
downloadaerc-0d645bcebda8d764c4f21f71ded1e3627d6e8837.tar.gz
go.mod: change base git url
I'm not sure what are the implications but it seems required.

Link: https://github.com/golang/go/issues/20883
Signed-off-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'commands/compose')
-rw-r--r--commands/compose/abort.go2
-rw-r--r--commands/compose/attach.go4
-rw-r--r--commands/compose/cc-bcc.go2
-rw-r--r--commands/compose/compose.go2
-rw-r--r--commands/compose/detach.go2
-rw-r--r--commands/compose/edit.go2
-rw-r--r--commands/compose/header.go4
-rw-r--r--commands/compose/next-field.go2
-rw-r--r--commands/compose/postpone.go6
-rw-r--r--commands/compose/send.go8
10 files changed, 17 insertions, 17 deletions
diff --git a/commands/compose/abort.go b/commands/compose/abort.go
index 74d0395..d4a4699 100644
--- a/commands/compose/abort.go
+++ b/commands/compose/abort.go
@@ -3,7 +3,7 @@ package compose
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Abort struct{}
diff --git a/commands/compose/attach.go b/commands/compose/attach.go
index 37f49df..50abda5 100644
--- a/commands/compose/attach.go
+++ b/commands/compose/attach.go
@@ -5,8 +5,8 @@ import (
 	"os"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/commands"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/widgets"
 	"github.com/mitchellh/go-homedir"
 )
 
diff --git a/commands/compose/cc-bcc.go b/commands/compose/cc-bcc.go
index ce62242..5540f83 100644
--- a/commands/compose/cc-bcc.go
+++ b/commands/compose/cc-bcc.go
@@ -3,7 +3,7 @@ package compose
 import (
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type CC struct{}
diff --git a/commands/compose/compose.go b/commands/compose/compose.go
index d61696e..563dcd1 100644
--- a/commands/compose/compose.go
+++ b/commands/compose/compose.go
@@ -1,7 +1,7 @@
 package compose
 
 import (
-	"git.sr.ht/~sircmpwn/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/commands"
 )
 
 var (
diff --git a/commands/compose/detach.go b/commands/compose/detach.go
index b48159d..31ac082 100644
--- a/commands/compose/detach.go
+++ b/commands/compose/detach.go
@@ -4,7 +4,7 @@ import (
 	"fmt"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Detach struct{}
diff --git a/commands/compose/edit.go b/commands/compose/edit.go
index e788022..375f361 100644
--- a/commands/compose/edit.go
+++ b/commands/compose/edit.go
@@ -3,7 +3,7 @@ package compose
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Edit struct{}
diff --git a/commands/compose/header.go b/commands/compose/header.go
index e4d7c40..5780aa8 100644
--- a/commands/compose/header.go
+++ b/commands/compose/header.go
@@ -4,8 +4,8 @@ import (
 	"fmt"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/commands"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/widgets"
 	"git.sr.ht/~sircmpwn/getopt"
 )
 
diff --git a/commands/compose/next-field.go b/commands/compose/next-field.go
index a81852e..69b33e5 100644
--- a/commands/compose/next-field.go
+++ b/commands/compose/next-field.go
@@ -3,7 +3,7 @@ package compose
 import (
 	"fmt"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type NextPrevField struct{}
diff --git a/commands/compose/postpone.go b/commands/compose/postpone.go
index 6d6c8e7..03a8608 100644
--- a/commands/compose/postpone.go
+++ b/commands/compose/postpone.go
@@ -8,9 +8,9 @@ import (
 	"github.com/miolini/datacounter"
 	"github.com/pkg/errors"
 
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 )
 
 type Postpone struct{}
diff --git a/commands/compose/send.go b/commands/compose/send.go
index 849182d..12bf155 100644
--- a/commands/compose/send.go
+++ b/commands/compose/send.go
@@ -15,10 +15,10 @@ import (
 	"github.com/google/shlex"
 	"github.com/pkg/errors"
 
-	"git.sr.ht/~sircmpwn/aerc/lib"
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/lib"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 	"github.com/emersion/go-message/mail"
 	"golang.org/x/oauth2"
 )