From 855422de68ec15f46098531b441e11367a26daf3 Mon Sep 17 00:00:00 2001 From: sk <123456@qq.com> Date: Mon, 30 Dec 2024 09:23:25 +0800 Subject: [PATCH] no message --- gob_register.go | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 gob_register.go diff --git a/gob_register.go b/gob_register.go deleted file mode 100644 index 04eabc0..0000000 --- a/gob_register.go +++ /dev/null @@ -1,47 +0,0 @@ -package win88 - -import ( - "encoding/gob" - - "mongo.games.com/goserver/core/basic" - "mongo.games.com/goserver/core/netlib" - "mongo.games.com/goserver/core/profile" - "mongo.games.com/goserver/core/schedule" - "mongo.games.com/goserver/core/transact" - "mongo.games.com/goserver/core/utils" - - "mongo.games.com/game/mgrsrv/api" - "mongo.games.com/game/model" - "mongo.games.com/game/rpc" -) - -func init() { - gob.Register(utils.RuntimeStats{}) - - gob.Register(model.PlayerOLStats{}) - gob.Register(map[string]*model.APITransactStats{}) - - gob.Register(rpc.State{}) - gob.Register(map[string]rpc.State{}) - - gob.Register(api.ApiStats{}) - gob.Register(map[string]api.ApiStats{}) - - gob.Register(profile.TimeElement{}) - gob.Register(map[string]profile.TimeElement{}) - - gob.Register(netlib.ServiceStats{}) - gob.Register(map[int]netlib.ServiceStats{}) - - gob.Register(schedule.TaskStats{}) - gob.Register(map[string]schedule.TaskStats{}) - - gob.Register(transact.TransStats{}) - gob.Register(map[int]transact.TransStats{}) - - gob.Register(utils.PanicStackInfo{}) - gob.Register(map[string]utils.PanicStackInfo{}) - - gob.Register(basic.CmdStats{}) - gob.Register(map[string]basic.CmdStats{}) -}