-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
27 lines (23 loc) · 762 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
module project-manager-go
go 1.18
require gorm.io/gorm v1.25.0
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mattn/go-sqlite3 v1.14.15 // indirect
golang.org/x/sys v0.6.0 // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
)
require (
github.com/fatih/color v1.15.0
github.com/go-chi/chi v1.5.4
github.com/go-chi/cors v1.2.1
github.com/jinzhu/configor v1.2.1
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mkozhukh/go-remote v0.0.0-20210614081926-7e5d2122344e
github.com/pascaldekloe/jwt v1.12.0
gorm.io/driver/sqlite v1.5.0
)