🎨同步配置文件改为队列操作(没写完)

This commit is contained in:
coward
2024-03-08 16:30:29 +08:00
parent d41a6e9ba2
commit c274c59044
8 changed files with 343 additions and 14 deletions

View File

@@ -9,6 +9,7 @@ import (
func ServerApi(r *gin.Engine) {
apiGroup := r.Group("server", middleware.Authorization())
{
apiGroup.GET("", api.Server().GetServer) // 获取服务端信息
apiGroup.GET("", api.Server().GetServer) // 获取服务端信息
apiGroup.GET("global-setting", api.Server().GetGlobalSetting) // 获取服务端全局配置
}
}