Compare commits
12 Commits
ccd3481b06
...
3104e68bb9
Author | SHA1 | Date |
---|---|---|
|
3104e68bb9 | |
|
e9e0aac833 | |
|
34062ef47e | |
|
53ebe7bbdc | |
|
7198f8c99f | |
|
ee94c94fb7 | |
|
3e853c2434 | |
|
343d2466ef | |
|
3e97f97d38 | |
|
b56a874b36 | |
|
6adba98ddb | |
|
4675e0ff58 |
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
data/DB_Task.dat
BIN
data/DB_Task.dat
Binary file not shown.
|
@ -13,6 +13,7 @@ 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"
|
||||||
|
@ -119,6 +120,8 @@ 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
|
@ -839,6 +839,8 @@ message DB_GameFree {
|
||||||
|
|
||||||
int32 IsCustom = 73;
|
int32 IsCustom = 73;
|
||||||
|
|
||||||
|
string GameName = 74;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
message DB_GameFreeArray {
|
message DB_GameFreeArray {
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue