feat: chat export function is ready

This commit is contained in:
RockYang
2023-08-04 12:08:07 +08:00
parent 57c69738ba
commit 3d6d46b30d
6 changed files with 237 additions and 40 deletions

View File

@@ -169,6 +169,7 @@ func main() {
group := s.Engine.Group("/api/chat/")
group.Any("new", h.ChatHandle)
group.GET("list", h.List)
group.GET("detail", h.Detail)
group.POST("update", h.Update)
group.GET("remove", h.Remove)
group.GET("history", h.History)