13 lines
195 B
Go
13 lines
195 B
Go
package logic
|
|
|
|
type ISession interface {
|
|
SetToken(key string)
|
|
GetToken() string
|
|
|
|
GetUID() uint64
|
|
GetStringUID() string
|
|
|
|
MarshalBinary() ([]byte, error)
|
|
UnmarshalBinary(data []byte) error
|
|
}
|