diff options
author | Jacob Gadikian <[email protected]> | 2023-08-14 23:41:15 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2023-08-14 09:41:15 -0600 |
commit | d6f86cccf5fa5b4eb30141da390cf2439746c5da (patch) | |
tree | cd8ad7aa2175259534b572d3a1b6c4852ef11343 /modules/caddyhttp/reverseproxy/command.go | |
parent | 2d7d806fcf91402eb15ae3ffd916bf0b2c6508df (diff) | |
download | caddy-d6f86cccf5fa5b4eb30141da390cf2439746c5da.tar.gz caddy-d6f86cccf5fa5b4eb30141da390cf2439746c5da.zip |
ci: use gci linter (#5708)
* use gofmput to format code
* use gci to format imports
* reconfigure gci
* linter autofixes
* rearrange imports a little
* export GOOS=windows golangci-lint run ./... --fix
Diffstat (limited to 'modules/caddyhttp/reverseproxy/command.go')
-rw-r--r-- | modules/caddyhttp/reverseproxy/command.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/caddyhttp/reverseproxy/command.go b/modules/caddyhttp/reverseproxy/command.go index 9359f3d0b..11f935cf9 100644 --- a/modules/caddyhttp/reverseproxy/command.go +++ b/modules/caddyhttp/reverseproxy/command.go @@ -21,15 +21,17 @@ import ( "strconv" "strings" + "github.com/spf13/cobra" + "go.uber.org/zap" + + caddycmd "github.com/caddyserver/caddy/v2/cmd" + "github.com/caddyserver/caddy/v2" "github.com/caddyserver/caddy/v2/caddyconfig" "github.com/caddyserver/caddy/v2/caddyconfig/httpcaddyfile" - caddycmd "github.com/caddyserver/caddy/v2/cmd" "github.com/caddyserver/caddy/v2/modules/caddyhttp" "github.com/caddyserver/caddy/v2/modules/caddyhttp/headers" "github.com/caddyserver/caddy/v2/modules/caddytls" - "github.com/spf13/cobra" - "go.uber.org/zap" ) func init() { |