mirror of
https://git.oceanpay.cc/danial/kami_scripts.git
synced 2025-12-18 21:12:33 +00:00
- 新增配置项 QueryURL,支持自定义查询地址 - 修改QueryCardInput结构体,调整字段名更准确 - 使用resty替代beego httplib,提升请求稳定性和重试能力 - 调整请求URL为kami-spider-monorepo服务地址 - 优化错误重试逻辑,针对验证码识别失败进行重试 - 调整响应解析和错误处理逻辑 - 更新order_service调用,传递新配置和请求参数 - 升级多个依赖包版本,提升模块稳定性和安全性 - 修正配置文件config.yaml中字段及格式,使配置更合理
51 lines
1.6 KiB
Modula-2
51 lines
1.6 KiB
Modula-2
module order
|
|
|
|
go 1.24.0
|
|
|
|
require (
|
|
github.com/beego/beego/v2 v2.3.8
|
|
github.com/duke-git/lancet/v2 v2.3.8
|
|
github.com/go-resty/resty/v2 v2.16.5
|
|
github.com/gofrs/flock v0.13.0
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/spf13/viper v1.21.0
|
|
go.uber.org/zap v1.27.0
|
|
gorm.io/driver/mysql v1.6.0
|
|
gorm.io/gen v0.3.27
|
|
gorm.io/gorm v1.31.1
|
|
)
|
|
|
|
require (
|
|
github.com/shiena/ansicolor v0.0.0-20230509054315-a9deabde6e02 // indirect
|
|
go.yaml.in/yaml/v3 v3.0.4 // indirect
|
|
golang.org/x/exp v0.0.0-20251113190631-e25ba8c21ef6 // indirect
|
|
golang.org/x/net v0.47.0 // indirect
|
|
)
|
|
|
|
require (
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.9.0 // indirect
|
|
github.com/go-sql-driver/mysql v1.9.2 // indirect
|
|
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
|
|
github.com/sagikazarmark/locafero v0.11.0 // indirect
|
|
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
|
|
github.com/spf13/afero v1.15.0 // indirect
|
|
github.com/spf13/cast v1.10.0 // indirect
|
|
github.com/spf13/pflag v1.0.10 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/mod v0.30.0 // indirect
|
|
golang.org/x/sync v0.18.0 // indirect
|
|
golang.org/x/sys v0.38.0 // indirect
|
|
golang.org/x/text v0.31.0 // indirect
|
|
golang.org/x/tools v0.39.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
gorm.io/datatypes v1.2.5 // indirect
|
|
gorm.io/hints v1.1.2 // indirect
|
|
gorm.io/plugin/dbresolver v1.6.0
|
|
)
|