This commit is contained in:
aozhiwei 2024-11-04 14:30:24 +08:00
parent 7cd542ecb5
commit 271e169b81
2 changed files with 14 additions and 0 deletions

View File

@ -25,6 +25,16 @@ type ServiceMgr interface {
}
type Session interface {
GetId() string
GetUid() string
GetGid() string
GetOpenId() string
GetVersion() int32
GetPlat() int32
GetPlatVip() int32
Invited() int32
NickName() string
IsGuest() int32
}
type SessionMgr interface {

View File

@ -12,3 +12,7 @@ const (
SESSION_MGR_MODULE_IDX
MAX_MODULE_IDX
)
const (
PLAT_ID_TG = 5
)