修正基本认证解码方式;添加查询 channels 接口

This commit is contained in:
2025-04-28 11:44:54 +08:00
parent 370362b0d5
commit 2fa8b4d540
5 changed files with 107 additions and 26 deletions

View File

@@ -27,6 +27,7 @@ func ApplyRouters(app *fiber.App) {
// 通道
channel := api.Group("/channel")
channel.Post("/list", handlers.ListChannels)
channel.Post("/create", handlers.CreateChannel)
channel.Post("/remove", handlers.RemoveChannels)