-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
24 lines (22 loc) · 852 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
module github.com/florianwoelki/insta-clone
go 1.15
require (
github.com/cosmtrek/air v1.21.2 // indirect
github.com/creack/pty v1.1.11 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/fatih/color v1.10.0 // indirect
github.com/go-openapi/runtime v0.19.24
github.com/go-playground/validator/v10 v10.4.1
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.4.2
github.com/imdario/mergo v0.3.11 // indirect
github.com/joho/godotenv v1.3.0
github.com/pelletier/go-toml v1.8.1 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
golang.org/x/net v0.0.0-20200602114024-627f9648deb9
golang.org/x/sys v0.0.0-20210113181707-4bcb84eeeb78 // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
gorm.io/driver/postgres v1.0.5
gorm.io/gorm v1.20.7
)