diff --git a/pkg/net/limits/limits.go b/pkg/net/limits/limits.go index 91cc9fb..38e970b 100644 --- a/pkg/net/limits/limits.go +++ b/pkg/net/limits/limits.go @@ -3,8 +3,7 @@ package limits // Common size limits used when reading upstream responses. const ( - Bytes512 = 512 - KiB512 int64 = 512 << 10 - MiB2 int64 = 2 << 20 + Bytes512 = 512 + KiB512 int64 = 512 << 10 + MiB2 int64 = 2 << 20 ) -