diff options
author | Matthew Holt <[email protected]> | 2019-07-02 12:37:06 -0600 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2019-07-02 12:37:06 -0600 |
commit | fdd871e1775d1b6d85de43e8ecf7ddc71a72c503 (patch) | |
tree | 958ba660c9970dc9d33487e1af6f50af8ff2e034 /modules/caddyhttp/encode | |
parent | 94c28a2574e8691aa64d28d70e9c03cb1d049726 (diff) | |
download | caddy-fdd871e1775d1b6d85de43e8ecf7ddc71a72c503.tar.gz caddy-fdd871e1775d1b6d85de43e8ecf7ddc71a72c503.zip |
go.mod: Append /v2 to module name; update all import paths
See https://github.com/golang/go/wiki/Modules#semantic-import-versioning
Diffstat (limited to 'modules/caddyhttp/encode')
-rw-r--r-- | modules/caddyhttp/encode/brotli/brotli.go | 4 | ||||
-rw-r--r-- | modules/caddyhttp/encode/encode.go | 4 | ||||
-rw-r--r-- | modules/caddyhttp/encode/gzip/gzip.go | 4 | ||||
-rw-r--r-- | modules/caddyhttp/encode/zstd/zstd.go | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/modules/caddyhttp/encode/brotli/brotli.go b/modules/caddyhttp/encode/brotli/brotli.go index 38af6c635..0890d438d 100644 --- a/modules/caddyhttp/encode/brotli/brotli.go +++ b/modules/caddyhttp/encode/brotli/brotli.go @@ -18,8 +18,8 @@ import ( "fmt" "github.com/andybalholm/brotli" - "github.com/caddyserver/caddy" - "github.com/caddyserver/caddy/modules/caddyhttp/encode" + "github.com/caddyserver/caddy/v2" + "github.com/caddyserver/caddy/v2/modules/caddyhttp/encode" ) func init() { diff --git a/modules/caddyhttp/encode/encode.go b/modules/caddyhttp/encode/encode.go index 3eebe6862..2b4591786 100644 --- a/modules/caddyhttp/encode/encode.go +++ b/modules/caddyhttp/encode/encode.go @@ -30,8 +30,8 @@ import ( "strings" "sync" - "github.com/caddyserver/caddy" - "github.com/caddyserver/caddy/modules/caddyhttp" + "github.com/caddyserver/caddy/v2" + "github.com/caddyserver/caddy/v2/modules/caddyhttp" ) func init() { diff --git a/modules/caddyhttp/encode/gzip/gzip.go b/modules/caddyhttp/encode/gzip/gzip.go index 9dea9b02d..45c5f5482 100644 --- a/modules/caddyhttp/encode/gzip/gzip.go +++ b/modules/caddyhttp/encode/gzip/gzip.go @@ -19,8 +19,8 @@ import ( "compress/gzip" // TODO: consider using https://github.com/klauspost/compress/gzip "fmt" - "github.com/caddyserver/caddy" - "github.com/caddyserver/caddy/modules/caddyhttp/encode" + "github.com/caddyserver/caddy/v2" + "github.com/caddyserver/caddy/v2/modules/caddyhttp/encode" ) func init() { diff --git a/modules/caddyhttp/encode/zstd/zstd.go b/modules/caddyhttp/encode/zstd/zstd.go index 40bcedca4..1470bafae 100644 --- a/modules/caddyhttp/encode/zstd/zstd.go +++ b/modules/caddyhttp/encode/zstd/zstd.go @@ -15,8 +15,8 @@ package caddyzstd import ( - "github.com/caddyserver/caddy" - "github.com/caddyserver/caddy/modules/caddyhttp/encode" + "github.com/caddyserver/caddy/v2" + "github.com/caddyserver/caddy/v2/modules/caddyhttp/encode" "github.com/klauspost/compress/zstd" ) |