boxes-api/go.mod

19 lines
386 B
Modula-2
Raw Normal View History

2024-10-05 01:10:35 +00:00
module boxes-api
go 1.21
2024-10-05 01:10:35 +00:00
require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/gorilla/mux v1.8.1
github.com/jinzhu/gorm v1.9.16
2024-10-05 03:05:30 +00:00
github.com/rs/cors v1.11.1
2024-10-23 22:56:10 +00:00
golang.org/x/crypto v0.28.0
2024-10-05 01:10:35 +00:00
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/mattn/go-sqlite3 v1.14.0 // indirect
2024-10-23 22:56:10 +00:00
github.com/pkg/errors v0.9.1 // indirect
2024-10-05 01:10:35 +00:00
)