Files

13 lines
195 B
Go
Raw Normal View History

2021-11-24 10:50:09 +08:00
package logic
type ISession interface {
SetToken(key string)
GetToken() string
2022-01-27 14:50:52 +08:00
GetUID() uint64
GetStringUID() string
2021-11-24 10:50:09 +08:00
MarshalBinary() ([]byte, error)
UnmarshalBinary(data []byte) error
}