refactor: flatten pkg/net/limits into pkg/net

This commit is contained in:
2026-05-28 12:35:00 +02:00
parent f7e5f46234
commit 05b9dfd216

9
pkg/net/limits.go Normal file
View File

@@ -0,0 +1,9 @@
package netutil
// Common size limits used when reading upstream responses.
const (
Bytes512 = 512
KiB512 int64 = 512 << 10
MiB2 int64 = 2 << 20
)