-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
44 lines (42 loc) · 1.77 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
34
35
36
37
38
39
40
41
42
43
44
module github.com/duyquang6/go-rbac-practice
go 1.16
require (
github.com/client9/misspell v0.3.4
github.com/garyburd/redigo v1.6.2 // indirect
github.com/gin-gonic/gin v1.6.3
github.com/go-gormigrate/gormigrate/v2 v2.0.0
github.com/go-playground/validator/v10 v10.4.1
github.com/gofrs/uuid v3.3.0+incompatible // indirect
github.com/google/go-cmp v0.5.4
github.com/gorilla/sessions v1.2.1
github.com/gostaticanalysis/analysisutil v0.6.1 // indirect
github.com/josharian/impl v1.0.0
github.com/kr/text v0.2.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/lib/pq v1.9.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/oklog/ulid/v2 v2.0.2
github.com/pkg/errors v0.9.1 // indirect
github.com/sethvargo/go-envconfig v0.3.2
github.com/sethvargo/go-signalcontext v0.1.0
github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94
go.opentelemetry.io/otel v0.16.0
go.opentelemetry.io/otel/exporters/trace/jaeger v0.16.0
go.opentelemetry.io/otel/sdk v0.16.0
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.16.0
golang.org/x/crypto v0.0.0-20201217014255-9d1352758620
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect
golang.org/x/mod v0.4.1 // indirect
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a // indirect
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
golang.org/x/tools v0.1.0
gopkg.in/boj/redistore.v1 v1.0.0-20160128113310-fc113767cd6b
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gorm.io/driver/postgres v1.0.8
gorm.io/gorm v1.20.12
honnef.co/go/tools v0.1.0
)