30 lines
939 B
Modula-2
30 lines
939 B
Modula-2
module proxy-server
|
|
|
|
go 1.24
|
|
|
|
require (
|
|
github.com/gofiber/fiber/v2 v2.52.6
|
|
github.com/google/uuid v1.6.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/lmittmann/tint v1.0.7
|
|
github.com/mattn/go-colorable v0.1.14
|
|
github.com/redis/go-redis/v9 v9.8.0
|
|
github.com/soheilhy/cmux v0.1.5
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.1.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.51.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
golang.org/x/net v0.35.0 // indirect
|
|
golang.org/x/sys v0.30.0 // indirect
|
|
golang.org/x/text v0.22.0 // indirect
|
|
)
|