liyp
8e4ad23278
- test.go中添加了生成测试数据的逻辑,并使用gorequest库发起了HTTP POST请求。 - main.go中调整了插入消息的条件,现在包括'message_sent'类型。 - .gitignore中新增了请求数据的忽略项request.json。 - go.mod中新增了gorequest和goconvey库的依赖。 此功能使得测试更加自动化,能够更方便地进行数据的模拟和测试。
19 lines
461 B
Modula-2
19 lines
461 B
Modula-2
module go-bot
|
|
|
|
go 1.22.2
|
|
|
|
require github.com/BurntSushi/toml v1.3.2
|
|
|
|
require (
|
|
github.com/goccy/go-json v0.10.2
|
|
github.com/mattn/go-sqlite3 v1.14.22
|
|
github.com/parnurzeal/gorequest v0.3.0
|
|
)
|
|
|
|
require (
|
|
github.com/elazarl/goproxy v0.0.0-20240618083138-03be62527ccb // indirect
|
|
github.com/moul/http2curl v1.0.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/smartystreets/goconvey v1.8.1 // indirect
|
|
golang.org/x/net v0.26.0 // indirect
|
|
)
|