-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
35 lines (33 loc) · 1.33 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
module github.com/brainupdaters/drlm-core
require (
github.com/DATA-DOG/go-sqlmock v1.3.3
github.com/brainupdaters/drlm-common v0.0.0-20200316115351-cfd8aaa157ed
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/go-sql-driver/mysql v1.5.0 // indirect
github.com/golang/protobuf v1.3.5
github.com/jinzhu/gorm v1.9.12
github.com/minio/minio v0.0.0-20200313015741-06e30b5aa1fb
github.com/minio/minio-go/v6 v6.0.50-0.20200306231101-b882ba63d570
github.com/mitchellh/go-homedir v1.1.0
github.com/pelletier/go-toml v1.6.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pkg/sftp v1.11.0 // indirect
github.com/rs/xid v1.2.1
github.com/secure-io/sio-go v0.3.1 // indirect
github.com/shirou/gopsutil v2.20.2+incompatible // indirect
github.com/sirupsen/logrus v1.4.2
github.com/spf13/afero v1.2.2
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v0.0.6
github.com/spf13/viper v1.6.2
github.com/stretchr/testify v1.4.0
golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4
golang.org/x/net v0.0.0-20200301022130-244492dfa37a // indirect
google.golang.org/genproto v0.0.0-20200312145019-da6875a35672 // indirect
google.golang.org/grpc v1.28.0
gopkg.in/gormigrate.v1 v1.6.0
gopkg.in/ini.v1 v1.54.0 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)
go 1.13