1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-23 21:34:47 +02:00
Files
go_basics/part_8/8.4/golang/todo-service/go.mod
Stanislav Chernyshev 1800e71c67 update to go 1.25
2025-08-16 00:05:06 +03:00

17 lines
326 B
Modula-2

module golang/todo-service
go 1.25
require (
github.com/gorilla/mux v1.8.1
github.com/mattn/go-sqlite3 v1.14.24
gorm.io/driver/sqlite v1.5.7
)
require (
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
golang.org/x/text v0.14.0 // indirect
gorm.io/gorm v1.25.12 // indirect
)