From 3d01f46efa03cb3ca371cfe588c691866f5c0bc1 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Thu, 15 Mar 2018 19:38:29 -0600 Subject: [PATCH] Dangit, goimports imported the wrong acme package --- caddytls/httphandler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddytls/httphandler.go b/caddytls/httphandler.go index 2e39fffc..75ec2cc3 100644 --- a/caddytls/httphandler.go +++ b/caddytls/httphandler.go @@ -25,7 +25,7 @@ import ( "os" "strings" - "github.com/xenolf/lego/acme" + "github.com/xenolf/lego/acmev2" ) const challengeBasePath = "/.well-known/acme-challenge"