49 lines
1.7 KiB
Modula-2
49 lines
1.7 KiB
Modula-2
module acc-server-manager
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/gofiber/fiber/v2 v2.52.8
|
|
github.com/gofiber/swagger v1.1.0
|
|
github.com/golang-jwt/jwt/v4 v4.5.2
|
|
github.com/google/uuid v1.6.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/qjebbs/go-jsons v0.0.0-20221222033332-a534c5fc1c4c
|
|
github.com/swaggo/swag v1.16.3
|
|
go.uber.org/dig v1.17.1
|
|
golang.org/x/crypto v0.39.0
|
|
golang.org/x/sync v0.15.0
|
|
golang.org/x/text v0.26.0
|
|
gorm.io/driver/sqlite v1.5.6
|
|
gorm.io/gorm v1.25.11
|
|
)
|
|
|
|
require (
|
|
github.com/KyleBanks/depth v1.2.1 // indirect
|
|
github.com/andybalholm/brotli v1.1.0 // indirect
|
|
github.com/fasthttp/websocket v1.5.3 // indirect
|
|
github.com/go-openapi/jsonpointer v0.21.0 // indirect
|
|
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
|
github.com/go-openapi/spec v0.21.0 // indirect
|
|
github.com/go-openapi/swag v0.23.0 // indirect
|
|
github.com/gofiber/websocket/v2 v2.2.1 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.22 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee // indirect
|
|
github.com/swaggo/files/v2 v2.0.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/sys v0.33.0 // indirect
|
|
golang.org/x/tools v0.33.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|