forked from TomDoesTech/GOTTH
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
25 lines (22 loc) · 663 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
module goth
go 1.22
require (
github.com/a-h/templ v0.2.543
github.com/go-chi/chi/v5 v5.0.11
github.com/google/uuid v1.6.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/stretchr/testify v1.9.0
golang.org/x/crypto v0.21.0
gorm.io/driver/sqlite v1.5.5
gorm.io/gorm v1.25.8
)
require (
github.com/davecgh/go-spew v1.1.1 // 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
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/sys v0.18.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)