后台管理功能已完成

This commit is contained in:
RockYang
2023-05-05 15:45:40 +08:00
parent 868ddc1f37
commit 40bf2b5c1b
13 changed files with 295 additions and 163 deletions

View File

@@ -46,7 +46,7 @@ type ChatSession struct {
SessionId string `json:"session_id"`
ClientIP string `json:"client_ip"` // 客户端 IP
Username string `json:"user"` // 当前登录的 user
ChatId string `json:"chat_id"` // 客户端聊天会话 ID
ChatId string `json:"chat_id"` // 客户端聊天会话 ID, 多会话模式专用字段
}
// ChatContext 聊天上下文

View File

@@ -10,8 +10,10 @@ type Config struct {
Listen string
Session Session
ProxyURL []string
ImgURL ImgURL // 各种图片资源链接地址,比如微信二维码,群二维码
AccessKey string // 管理员访问 AccessKey, 通过传入这个参数可以访问系统管理 API
Manager Manager // 后台管理员账户信息
Chat Chat
ImgURL ImgURL // 各种图片资源链接地址,比如微信二维码,群二维码
}
type User struct {
@@ -45,8 +47,8 @@ type Chat struct {
}
type APIKey struct {
Value string `json:"value"` // Key value
LastUsed int64 `json:"last_used"` // 最后使用时间
Value string `json:"value"` // Key value
LastUsed int64 `json:"last_used"` // 最后使用时间
}
// Session configs struct