-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
36 lines (31 loc) · 1.08 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
module github.com/eurofurence/reg-payment-service
go 1.18
require (
github.com/StephanHCB/go-autumn-logging v0.4.0
github.com/StephanHCB/go-autumn-logging-zerolog v0.6.0
github.com/StephanHCB/go-autumn-restclient v0.9.0
github.com/StephanHCB/go-autumn-restclient-circuitbreaker v0.5.0
github.com/go-chi/chi/v5 v5.1.0
github.com/go-http-utils/headers v0.0.0-20181008091004-fed159eddc2a
github.com/golang-jwt/jwt/v4 v4.5.1
github.com/google/uuid v1.6.0
gorm.io/driver/mysql v1.5.7
gorm.io/gorm v1.25.12
)
require github.com/rs/zerolog v1.33.0
require (
github.com/go-sql-driver/mysql v1.7.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sony/gobreaker v1.0.0 // indirect
golang.org/x/sys v0.12.0 // indirect
golang.org/x/text v0.14.0 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/stretchr/testify v1.9.0
gopkg.in/yaml.v3 v3.0.1
)