Compare commits

..

No commits in common. "3104e68bb94dadd074a269bbd1918d75eb391f34" and "ccd3481b061647958c0edc424a36b89fcf7ab672" have entirely different histories.

8 changed files with 2336 additions and 2510 deletions

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

View File

@ -13,7 +13,6 @@ import (
"mongo.games.com/game/dbproxy/mongo" "mongo.games.com/game/dbproxy/mongo"
"mongo.games.com/game/mgrsrv/api" "mongo.games.com/game/mgrsrv/api"
"mongo.games.com/game/model" "mongo.games.com/game/model"
"mongo.games.com/game/webapi"
"mongo.games.com/goserver/core/basic" "mongo.games.com/goserver/core/basic"
"mongo.games.com/goserver/core/logger" "mongo.games.com/goserver/core/logger"
"mongo.games.com/goserver/core/netlib" "mongo.games.com/goserver/core/netlib"
@ -120,8 +119,6 @@ func init() {
gob.Register(map[string]*model.APITransactStats{}) gob.Register(map[string]*model.APITransactStats{})
gob.Register(api.ApiStats{}) // 这里依赖了mgrsrv的结构体会导致mgrsrv初始化最好是把结构体放到一个公共包里不要两个不相关的程序有直接依赖 gob.Register(api.ApiStats{}) // 这里依赖了mgrsrv的结构体会导致mgrsrv初始化最好是把结构体放到一个公共包里不要两个不相关的程序有直接依赖
gob.Register(map[string]api.ApiStats{}) gob.Register(map[string]api.ApiStats{})
gob.Register(webapi.ApiStats{})
gob.Register(map[string]webapi.ApiStats{})
gob.Register(mgo.Stats{}) gob.Register(mgo.Stats{})
gob.Register(profile.TimeElement{}) gob.Register(profile.TimeElement{})
gob.Register(map[string]profile.TimeElement{}) gob.Register(map[string]profile.TimeElement{})

File diff suppressed because it is too large Load Diff

View File

@ -839,8 +839,6 @@ message DB_GameFree {
int32 IsCustom = 73; int32 IsCustom = 73;
string GameName = 74;
} }
message DB_GameFreeArray { message DB_GameFreeArray {

Binary file not shown.