"添加common和logic模块的go.mod文件,初始化项目依赖"

This commit is contained in:
1
2025-06-20 22:23:43 +00:00
parent 117d6b53d2
commit bdec5f154d
3 changed files with 97 additions and 0 deletions

16
common/go.mod Normal file
View File

@@ -0,0 +1,16 @@
module blazing/common
go 1.19
require github.com/panjf2000/gnet v1.6.7
require (
github.com/panjf2000/ants/v2 v2.11.3 // indirect
github.com/panjf2000/gnet/v2 v2.5.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/sync v0.11.0 // indirect
golang.org/x/sys v0.30.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
)