-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
31 lines (28 loc) · 1.23 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
module url-shortner
go 1.17
require (
github.com/go-sql-driver/mysql v1.6.1-0.20210825083250-6cf3092b0e12
github.com/gorilla/mux v1.8.1-0.20211212162904-91708ff8e35b
github.com/jinzhu/gorm v1.9.16
github.com/prometheus/client_golang v1.12.1
github.com/robfig/cron v1.2.0
github.com/stretchr/testify v1.7.1-0.20210824115523-ab6dc3262822
github.com/tylerb/graceful v1.2.16-0.20170221171003-d72b0151351a
)
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/jinzhu/inflection v1.0.1-0.20210111022912-b5281034e75e // indirect
github.com/jinzhu/now v1.1.3 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.32.1 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/stretchr/objx v0.3.1-0.20210819104457-27373ced0947 // indirect
golang.org/x/sys v0.1.0 // indirect
google.golang.org/protobuf v1.26.0 // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
)