forked from gothinkster/realworld-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathgo.mod
More file actions
17 lines (15 loc) · 617 Bytes
/
go.mod
File metadata and controls
17 lines (15 loc) · 617 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module github.com/0xdod/go-realworld
go 1.16
require (
github.com/go-playground/validator/v10 v10.9.0 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang-migrate/migrate v3.5.4+incompatible // indirect
github.com/gorilla/handlers v1.5.1 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/gosimple/slug v1.11.2 // indirect
github.com/jmoiron/sqlx v1.3.4 // indirect
github.com/joho/godotenv v1.4.0 // indirect
github.com/lib/pq v1.10.4 // indirect
github.com/rs/cors v1.8.0 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
)