-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (23 loc) · 729 Bytes
/
go.mod
File metadata and controls
26 lines (23 loc) · 729 Bytes
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
module booking-go
go 1.22.6
require (
github.com/go-chi/chi v1.5.5
github.com/go-chi/cors v1.2.1
github.com/jinzhu/configor v1.2.2
github.com/lib/pq v1.10.9
github.com/mkozhukh/go-remote v0.0.0-20210614081926-7e5d2122344e
github.com/pascaldekloe/jwt v1.12.0
github.com/unrolled/render v1.7.0
gorm.io/driver/sqlite v1.4.4
gorm.io/gorm v1.24.6
)
require (
github.com/BurntSushi/toml v1.2.0 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
golang.org/x/sys v0.13.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)