forked from victorsteven/Go-JWT-Postgres-Mysql-Restful-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
22 lines (20 loc) · 692 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
module github.com/victorsteven/fullstack
go 1.13
require (
github.com/DATA-DOG/go-sqlmock v1.3.3
github.com/badoux/checkmail v0.0.0-20181210160741-9661bd69e9ad
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/fatih/structs v1.1.0
github.com/gin-gonic/gin v1.4.0
github.com/go-sql-driver/mysql v1.4.1
github.com/go-test/deep v1.0.2
github.com/gorilla/handlers v1.4.2
github.com/gorilla/mux v1.6.2
github.com/jinzhu/gorm v1.9.10
github.com/joho/godotenv v1.3.0
github.com/kr/pretty v0.1.0 // indirect
github.com/satori/go.uuid v1.2.0
github.com/stretchr/testify v1.3.0
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
gopkg.in/go-playground/assert.v1 v1.2.1
)