feat(database): add CRUD operations for parsed sessions and update session name functionality
This commit is contained in:
@@ -35,3 +35,10 @@ type ParsedResult struct {
|
||||
Items []interface{} `json:"items"`
|
||||
Heroes []interface{} `json:"heroes"`
|
||||
}
|
||||
|
||||
// ParsedSession 解析数据会话信息
|
||||
type ParsedSession struct {
|
||||
ID int64 `json:"id"`
|
||||
SessionName string `json:"session_name"`
|
||||
CreatedAt int64 `json:"created_at"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user