-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgo.mod
27 lines (22 loc) · 951 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
module notion-blog
go 1.17
replace github.com/jomei/notionapi => github.com/xzebra/notionapi v1.5.1-0.20211019063545-d541edbcd60c
// replace github.com/jomei/notionapi => ../notionapi
require (
github.com/briandowns/spinner v1.16.0
github.com/itzg/go-flagsfiller v1.5.0
github.com/janeczku/go-spinner v0.0.0-20150530144529-cf8ef1d64394
github.com/joho/godotenv v1.4.0
github.com/jomei/notionapi v1.5.3-0.20211015052055-e3eaeddd589f
github.com/otiai10/opengraph v1.1.3
)
require (
github.com/fatih/color v1.7.0 // indirect
github.com/iancoleman/strcase v0.0.0-20191112232945-16388991a334 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/mattn/go-isatty v0.0.8 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 // indirect
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
golang.org/x/sys v0.0.0-20210423082822-04245dca01da // indirect
)