You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
753 B

3 years ago
  1. package system
  2. import (
  3. v1 "github.com/flipped-aurora/gin-vue-admin/server/api/v1"
  4. "github.com/flipped-aurora/gin-vue-admin/server/middleware"
  5. "github.com/gin-gonic/gin"
  6. )
  7. type SysRouter struct {
  8. }
  9. func (s *SysRouter) InitSystemRouter(Router *gin.RouterGroup) {
  10. sysRouter := Router.Group("system").Use(middleware.OperationRecord())
  11. var systemApi = v1.ApiGroupApp.SystemApiGroup.SystemApi
  12. {
  13. sysRouter.POST("getSystemConfig", systemApi.GetSystemConfig) // 获取配置文件内容
  14. sysRouter.POST("setSystemConfig", systemApi.SetSystemConfig) // 设置配置文件内容
  15. sysRouter.POST("getServerInfo", systemApi.GetServerInfo) // 获取服务器信息
  16. sysRouter.POST("reloadSystem", systemApi.ReloadSystem) // 重启服务
  17. }
  18. }