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

This commit is contained in:
2026-05-28 12:35:00 +02:00
committed by Milas Holsting
parent 34b8b96a62
commit 3b6d1b6439

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
)