-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
33 lines (29 loc) · 1 KB
/
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
30
31
32
33
module github.com/lolopinto/ent
require (
github.com/alexflint/go-filemutex v1.2.0 // indirect
github.com/davecgh/go-spew v1.1.1
github.com/google/uuid v1.3.0
github.com/iancoleman/strcase v0.3.0
github.com/jinzhu/inflection v1.0.0
github.com/jmoiron/sqlx v1.3.5
github.com/joho/godotenv v1.4.0
github.com/khaiql/dbcleaner v2.3.0+incompatible
github.com/lib/pq v1.10.7
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.6.0
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/stretchr/testify v1.8.1
golang.org/x/sys v0.1.0 // indirect
gopkg.in/yaml.v3 v3.0.1
)
require github.com/mattn/go-sqlite3 v1.14.15
require (
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stoewer/go-strcase v1.3.0 // indirect
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)
go 1.23