mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
17 lines
326 B
Modula-2
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
|
|
)
|