-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
27 lines (25 loc) · 979 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 golang-api
go 1.15
require (
github.com/aws/aws-sdk-go v1.35.12
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/gin-gonic/gin v1.6.3
github.com/go-playground/validator/v10 v10.4.0
github.com/go-sql-driver/mysql v1.5.0
github.com/golang/protobuf v1.4.2 // indirect
github.com/google/uuid v1.1.2
github.com/iancoleman/strcase v0.1.2
github.com/joho/godotenv v1.3.0
github.com/json-iterator/go v1.1.10 // indirect
github.com/lib/pq v1.8.0 // indirect
github.com/mattn/go-sqlite3 v1.14.4 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/ugorji/go v1.1.10 // indirect
github.com/ziutek/mymysql v1.5.4 // indirect
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897
golang.org/x/sys v0.0.0-20201007082116-8445cc04cbdf // indirect
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/gorp.v1 v1.7.2
gopkg.in/yaml.v2 v2.3.0 // indirect
)