-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
31 lines (28 loc) · 1.07 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
module github.com/cjlapao/common-go
go 1.19
require (
github.com/cjlapao/common-go-cryptorand v0.0.6
github.com/cjlapao/common-go-identity v0.0.24
github.com/fatih/color v1.17.0
github.com/pascaldekloe/jwt v1.12.0
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.9.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/cjlapao/common-go-execution-context v0.0.3 // indirect
github.com/cjlapao/common-go-identity-oauth2 v0.0.6 // indirect
github.com/cjlapao/common-go-logger v0.0.7 // indirect
github.com/cjlapao/common-go-restapi v0.0.12 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/handlers v1.5.2 // indirect
github.com/gorilla/mux v1.8.1 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.23.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)