forked from piaolin/DetectDee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
31 lines (27 loc) · 896 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 DetectDee
go 1.18
require (
github.com/chromedp/chromedp v0.9.1
github.com/go-resty/resty/v2 v2.7.0
github.com/sashabaranov/go-openai v1.9.4
github.com/sirupsen/logrus v1.9.0
github.com/spf13/cobra v1.7.0
github.com/tidwall/gjson v1.14.4
)
require (
github.com/chromedp/sysutil v1.0.0 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.1.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
)
require (
github.com/chromedp/cdproto v0.0.0-20230506233603-4ea4c6dc2e5b // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/sys v0.7.0 // indirect
)