summaryrefslogtreecommitdiff
path: root/modules/caddytls/acmemanager.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2019-09-12 17:31:10 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2019-09-12 17:31:10 -0600
commit7799554baacbb7ca2b80f2a22968cfcd8071ab0a (patch)
tree9e6d12804765964da743153a44363bcf91254d3e /modules/caddytls/acmemanager.go
parent2cb01d43cf1647bc46e2c7a114c952925524ebe1 (diff)
go.mod: Use lego v3 and CertMagic 0.7.0
Diffstat (limited to 'modules/caddytls/acmemanager.go')
-rw-r--r--modules/caddytls/acmemanager.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/caddytls/acmemanager.go b/modules/caddytls/acmemanager.go
index 572bbd8..b717268 100644
--- a/modules/caddytls/acmemanager.go
+++ b/modules/caddytls/acmemanager.go
@@ -20,10 +20,8 @@ import (
"net/url"
"time"
- "github.com/go-acme/lego/certcrypto"
-
"github.com/caddyserver/caddy/v2"
- "github.com/go-acme/lego/challenge"
+ "github.com/go-acme/lego/v3/challenge"
"github.com/mholt/certmagic"
)
@@ -51,7 +49,6 @@ type ACMEManagerMaker struct {
Storage json.RawMessage `json:"storage,omitempty"`
storage certmagic.Storage
- keyType certcrypto.KeyType
}
// CaddyModule returns the Caddy module information.