-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
25 lines (23 loc) · 856 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
module github.com/naufal-dean/go-forum-rest-api
go 1.15
require (
github.com/bxcodec/faker/v3 v3.5.0
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/go-playground/validator/v10 v10.4.1
github.com/google/uuid v1.1.4
github.com/gorilla/mux v1.8.0
github.com/jackc/pgproto3/v2 v2.0.7 // indirect
github.com/jarcoal/httpmock v1.0.7 // indirect
github.com/joho/godotenv v1.3.0
github.com/pkg/errors v0.9.1
github.com/rakyll/statik v0.1.7
github.com/sirupsen/logrus v1.7.0
github.com/stretchr/objx v0.3.0 // indirect
github.com/stretchr/testify v1.7.0
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
golang.org/x/text v0.3.4 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
gorm.io/driver/postgres v1.0.6
gorm.io/gorm v1.20.9
)