28 lines
530 B
Go
28 lines
530 B
Go
package srvlib
|
|
|
|
const (
|
|
UnknowServiceType int = 0
|
|
ClientServiceType = 1
|
|
BalanceServiceType = 2
|
|
AccountServiceType = 3
|
|
GateServiceType = 4
|
|
ManagerServiceType = 5
|
|
WorldServiceType = 6
|
|
GameServiceType = 7
|
|
RankServiceType = 8
|
|
MaxServiceType = 9
|
|
)
|
|
|
|
const (
|
|
UnknowServerType int = 0
|
|
_
|
|
BalanceServerType = 2
|
|
AccountServerType = 3
|
|
GateServerType = 4
|
|
ManagerServerType = 5
|
|
WorldServerType = 6
|
|
GameServerType = 7
|
|
RankServerType = 8
|
|
MaxServerType = 9
|
|
)
|