alai-server/backend/go.mod

25 lines
544 B
Modula-2
Raw Normal View History

2022-07-22 23:00:31 -04:00
module git.cromer.cl/Proyecto-Titulo/alai-server/backend
2022-06-29 21:26:05 -04:00
2023-01-27 22:52:05 -03:00
go 1.19
2022-06-29 21:26:05 -04:00
require github.com/julienschmidt/httprouter v1.3.0
2023-01-27 22:52:05 -03:00
require golang.org/x/crypto v0.5.0
2022-06-29 21:26:05 -04:00
require github.com/joho/godotenv v1.4.0
2023-01-27 22:52:05 -03:00
require github.com/golang-jwt/jwt/v4 v4.4.3
2022-06-29 21:26:05 -04:00
require (
2023-01-27 22:52:05 -03:00
github.com/go-sql-driver/mysql v1.7.0 // indirect
2022-06-29 21:26:05 -04:00
github.com/gorilla/handlers v1.5.1
)
require (
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
2023-01-27 22:52:05 -03:00
gorm.io/driver/mysql v1.4.5
gorm.io/gorm v1.24.3
2022-06-29 21:26:05 -04:00
)