aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/acme/config.go2
-rw-r--r--cmd/acme/file.go2
-rw-r--r--cmd/acme/main.go2
-rw-r--r--cmd/batch/args.go2
-rw-r--r--cmd/batch/files.go2
-rw-r--r--cmd/batch/main.go2
6 files changed, 6 insertions, 6 deletions
diff --git a/cmd/acme/config.go b/cmd/acme/config.go
index 49e0270..1a30f61 100644
--- a/cmd/acme/config.go
+++ b/cmd/acme/config.go
@@ -8,7 +8,7 @@ import (
"strings"
"time"
- "dim13.org/acme"
+ "github.com/dim13/acme"
"gopkg.in/yaml.v2"
)
diff --git a/cmd/acme/file.go b/cmd/acme/file.go
index b54246b..637ddee 100644
--- a/cmd/acme/file.go
+++ b/cmd/acme/file.go
@@ -8,7 +8,7 @@ import (
"os"
"path"
- "dim13.org/acme"
+ "github.com/dim13/acme"
)
func NewFile(fname string, mode os.FileMode) (io.WriteCloser, error) {
diff --git a/cmd/acme/main.go b/cmd/acme/main.go
index 1a7aa78..093c8d9 100644
--- a/cmd/acme/main.go
+++ b/cmd/acme/main.go
@@ -8,7 +8,7 @@ import (
"log"
"time"
- "dim13.org/acme"
+ "github.com/dim13/acme"
)
var (
diff --git a/cmd/batch/args.go b/cmd/batch/args.go
index ab7d03f..820baf1 100644
--- a/cmd/batch/args.go
+++ b/cmd/batch/args.go
@@ -5,7 +5,7 @@ import (
"fmt"
"time"
- "dim13.org/acme"
+ "github.com/dim13/acme"
)
type Domains []string
diff --git a/cmd/batch/files.go b/cmd/batch/files.go
index 20cb6e1..044b063 100644
--- a/cmd/batch/files.go
+++ b/cmd/batch/files.go
@@ -11,7 +11,7 @@ import (
"path/filepath"
"time"
- "dim13.org/acme"
+ "github.com/dim13/acme"
)
type Cert struct {
diff --git a/cmd/batch/main.go b/cmd/batch/main.go
index a637fe2..33cfcfc 100644
--- a/cmd/batch/main.go
+++ b/cmd/batch/main.go
@@ -4,7 +4,7 @@ import (
"log"
"path"
- "dim13.org/acme"
+ "github.com/dim13/acme"
)
func startSolvers() (acme.Solvers, error) {