forked from aaron-epstein/Go-API-Tech-Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
38 lines (33 loc) · 1.04 KB
/
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
30
31
32
33
34
35
36
37
38
module tech-challenge
go 1.23.2
require (
github.com/go-chi/chi v1.5.5
github.com/joho/godotenv v1.5.1
)
require (
github.com/go-chi/cors v1.2.1
github.com/go-playground/validator/v10 v10.22.1
github.com/stretchr/testify v1.8.4
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/DATA-DOG/go-sqlmock v1.5.2
github.com/gabriel-vasile/mimetype v1.4.6 // indirect
github.com/go-chi/chi/v5 v5.1.0
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator v9.31.0+incompatible
github.com/gorilla/mux v1.8.1
github.com/leodido/go-urn v1.4.0 // indirect
github.com/lib/pq v1.10.9
golang.org/x/crypto v0.28.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.19.0 // indirect
)