feat: 服务器状态API

This commit is contained in:
Akkia
2022-05-17 11:22:56 +08:00
parent d12684ff07
commit d70ebf4d20
6 changed files with 172 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
package model
import "time"
type ApiToken struct {
Common
UserId uint64 `json:"user_id"`
Token string `json:"token"`
TokenExpired time.Time `json:"token_expired"`
}