0991555c2d
- 将日志记录库从 Logrus 替换为 Zerolog,提升性能和灵活性 - 更新各个模块的日志记录方式,确保一致性 - 优化错误处理逻辑,确保在发生错误时能够正确记录并传递错误信息 - 移除不再使用的错误处理字段,简化代码结构 - 更新相关文档以反映新的日志记录和错误处理机制
42 lines
1.6 KiB
Modula-2
42 lines
1.6 KiB
Modula-2
module code.hoteas.com/golang/hotime
|
|
|
|
go 1.23
|
|
|
|
require (
|
|
gitee.com/chunanyong/dm v1.8.22
|
|
github.com/360EntSecGroup-Skylar/excelize v1.4.1
|
|
github.com/garyburd/redigo v1.6.3
|
|
github.com/go-pay/gopay v1.5.78
|
|
github.com/go-sql-driver/mysql v1.6.0
|
|
github.com/mattn/go-sqlite3 v1.14.12
|
|
github.com/rs/zerolog v1.35.0
|
|
github.com/silenceper/wechat/v2 v2.1.2
|
|
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.364
|
|
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/ocr v1.0.364
|
|
go.mongodb.org/mongo-driver v1.10.1
|
|
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
|
|
)
|
|
|
|
require (
|
|
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b // indirect
|
|
github.com/fatih/structs v1.1.0 // indirect
|
|
github.com/golang/snappy v0.0.1 // indirect
|
|
github.com/gomodule/redigo v1.8.5 // indirect
|
|
github.com/klauspost/compress v1.13.6 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
|
|
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/sirupsen/logrus v1.8.1 // indirect
|
|
github.com/spf13/cast v1.3.1 // indirect
|
|
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
|
|
github.com/xdg-go/scram v1.1.1 // indirect
|
|
github.com/xdg-go/stringprep v1.0.3 // indirect
|
|
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
|
|
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
|
|
golang.org/x/sys v0.29.0 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
)
|