-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
29 lines (26 loc) · 912 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module gantt-backend-go
go 1.20
require (
github.com/go-chi/chi v4.0.3+incompatible
github.com/go-chi/cors v1.2.0
github.com/knadh/koanf/parsers/yaml v0.1.0
github.com/knadh/koanf/providers/env v0.1.0
github.com/knadh/koanf/providers/file v0.1.0
github.com/knadh/koanf/v2 v2.1.0
github.com/unrolled/render v1.4.0
gorm.io/driver/sqlite v1.1.4
gorm.io/gorm v1.21.12
)
require (
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.2 // indirect
github.com/knadh/koanf/maps v0.1.1 // indirect
github.com/mattn/go-sqlite3 v1.14.5 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
golang.org/x/net v0.21.0 // indirect
golang.org/x/sys v0.17.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)