-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
31 lines (28 loc) · 984 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
27
28
29
30
31
module github.com/sambaiz/cdkbot
go 1.21
require (
github.com/aws/aws-lambda-go v1.46.0
github.com/aws/aws-sdk-go v1.50.11
github.com/golang/mock v1.6.0
github.com/google/go-github/v26 v26.1.3
github.com/stretchr/testify v1.8.4
go.uber.org/mock v0.4.0
go.uber.org/zap v1.26.0
golang.org/x/oauth2 v0.16.0
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/net v0.20.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)