-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
23 lines (20 loc) · 677 Bytes
/
go.mod
File metadata and controls
23 lines (20 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/markmnl/fmsgd
go 1.25
require (
github.com/caitlinelfring/go-env-default v1.1.0
github.com/joho/godotenv v1.5.1
github.com/levenlabs/golib v0.0.0-20180911183212-0f8974794783
github.com/lib/pq v1.10.9
github.com/miekg/dns v1.1.68
)
require (
github.com/stretchr/testify v1.8.2 // indirect
golang.org/x/mod v0.24.0 // indirect
golang.org/x/net v0.40.0 // indirect
golang.org/x/sync v0.14.0 // indirect
golang.org/x/sys v0.33.0 // indirect
golang.org/x/tools v0.33.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)