34 lines
1.1 KiB
Modula-2
34 lines
1.1 KiB
Modula-2
module api
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/glebarez/sqlite v1.4.5
|
|
github.com/gofiber/fiber/v2 v2.32.0
|
|
github.com/gofiber/jwt/v3 v3.2.0
|
|
github.com/joho/godotenv v1.4.0
|
|
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f
|
|
gorm.io/gorm v1.23.5
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.0.4 // indirect
|
|
github.com/glebarez/go-sqlite v1.17.2 // indirect
|
|
github.com/golang-jwt/jwt/v4 v4.1.0 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.4 // indirect
|
|
github.com/klauspost/compress v1.15.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.35.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
golang.org/x/sys v0.0.0-20220405052023-b1e9470b6e64 // indirect
|
|
modernc.org/libc v1.16.8 // indirect
|
|
modernc.org/mathutil v1.4.1 // indirect
|
|
modernc.org/memory v1.1.1 // indirect
|
|
modernc.org/sqlite v1.17.2 // indirect
|
|
)
|