-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgo.mod
26 lines (22 loc) · 795 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
module github.com/hamstah/awstools/ecs/dashboard
go 1.21
toolchain go1.21.0
require (
github.com/alecthomas/kingpin/v2 v2.3.2
github.com/aws/aws-sdk-go v1.45.11
github.com/fsnotify/fsnotify v1.6.0
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/hamstah/awstools/common v0.0.0-20230905015132-d23905c12bb5
github.com/sirupsen/logrus v1.9.3
)
require (
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/hakobe/paranoidhttp v0.3.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
golang.org/x/crypto v0.13.0 // indirect
golang.org/x/sys v0.12.0 // indirect
)