-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
31 lines (27 loc) · 975 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/joshmenden/n2h
go 1.18
require (
github.com/aws/aws-sdk-go v1.44.91
github.com/google/go-github/v47 v47.0.0
github.com/joho/godotenv v1.4.0
github.com/jomei/notionapi v1.9.1
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be
)
require (
github.com/gookit/goutil v0.5.11 // indirect
github.com/imdario/mergo v0.3.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/golang/protobuf v1.3.4 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/gookit/config/v2 v2.1.5
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
google.golang.org/appengine v1.6.7 // indirect
)