-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
27 lines (25 loc) · 946 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
26
27
module github.com/gobeam/golang-oauth
go 1.13
require (
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/gin-gonic/gin v1.6.2
github.com/go-ini/ini v1.55.0
github.com/go-playground/validator/v10 v10.2.0
github.com/go-sql-driver/mysql v1.5.0
github.com/google/uuid v1.1.1
github.com/jinzhu/gorm v1.9.12
github.com/json-iterator/go v1.1.9
github.com/mitchellh/mapstructure v1.2.2 // indirect
github.com/pelletier/go-toml v1.7.0 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v0.0.7 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.6.2 // indirect
github.com/stvp/rollbar v0.5.1
golang.org/x/crypto v0.0.0-20191205180655-e7c4368fe9dd
golang.org/x/sys v0.0.0-20200408040146-ea54a3c99b9b // indirect
gopkg.in/gorp.v2 v2.2.0
gopkg.in/ini.v1 v1.55.0 // indirect
)