feat:优化项目结构

This commit is contained in:
henry
2021-11-24 10:50:09 +08:00
parent f007168919
commit 0862142ef0
25 changed files with 306 additions and 203 deletions

9
app/logic/isession.go Normal file
View File

@ -0,0 +1,9 @@
package logic
type ISession interface {
SetToken(key string)
GetToken() string
MarshalBinary() ([]byte, error)
UnmarshalBinary(data []byte) error
}