aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatthew Holt <[email protected]>2024-04-19 10:17:27 -0600
committerFrancis Lavoie <[email protected]>2024-04-23 19:55:18 -0400
commitcd975984d3be23634bc1842482a5a6a2863cc128 (patch)
treeea116e916d22106a3b8a3250be5a1f817b0fedff
parent07ba29f39b2a5a7eec503bd776adeca380e79515 (diff)
downloadcaddy-cd975984d3be23634bc1842482a5a6a2863cc128.tar.gz
caddy-cd975984d3be23634bc1842482a5a6a2863cc128.zip
Try a different order, lol
-rw-r--r--cmd/main.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/main.go b/cmd/main.go
index d9dfc6b2f..2d02dd5aa 100644
--- a/cmd/main.go
+++ b/cmd/main.go
@@ -33,11 +33,6 @@ import (
"strings"
"time"
- "github.com/caddyserver/certmagic"
- "github.com/spf13/pflag"
- "go.uber.org/automaxprocs/maxprocs"
- "go.uber.org/zap"
-
// For running in minimal environments, this can ease
// headaches related to establishing TLS connections.
// "Package fallback embeds a set of fallback X.509 trusted
@@ -50,6 +45,11 @@ import (
// date for security and compatibility reasons."
_ "golang.org/x/crypto/x509roots/fallback"
+ "github.com/caddyserver/certmagic"
+ "github.com/spf13/pflag"
+ "go.uber.org/automaxprocs/maxprocs"
+ "go.uber.org/zap"
+
"github.com/caddyserver/caddy/v2"
"github.com/caddyserver/caddy/v2/caddyconfig"
)