-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
29 lines (24 loc) · 808 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
28
29
module github.com/booscaaa/golang-clean-arch-hateoas-example
go 1.17
require (
github.com/gorilla/mux v1.8.0
github.com/jackc/pgx/v4 v4.15.0
github.com/spf13/viper v1.10.1
github.com/stretchr/testify v1.7.0
github.com/swaggo/http-swagger v1.0.0
github.com/swaggo/swag v1.7.0
)
require github.com/bxcodec/faker/v3 v3.7.0
require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
github.com/booscaaa/go-hateoas v1.0.0
github.com/golang/mock v1.6.0
github.com/gorilla/handlers v1.5.1
github.com/jackc/pgconn v1.11.0
github.com/pashagolub/pgxmock v1.4.3
github.com/spf13/afero v1.8.1 // indirect
github.com/spf13/cobra v1.3.0
go.elastic.co/apm/module/apmgorilla v1.15.0
golang.org/x/sys v0.0.0-20220222200937-f2425489ef4c // indirect
gopkg.in/ini.v1 v1.66.4 // indirect
)