From 60c8f6039b4123b9210437dc4655ff9ea6382d05 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Mon, 18 May 2026 17:49:03 +0200 Subject: [PATCH] chore: formatting --- pkg/net/limits/limits.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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 ) -