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.

15 lines
469 B

  1. package router
  2. import (
  3. "gin-vue-admin/api/v1"
  4. "github.com/gin-gonic/gin"
  5. )
  6. func InitSystemRouter(Router *gin.RouterGroup) {
  7. SystemRouter := Router.Group("system").Use(middleware.OperationRecord())
  8. {
  9. SystemRouter.POST("getSystemConfig", v1.GetSystemConfig) // 获取配置文件内容
  10. SystemRouter.POST("setSystemConfig", v1.SetSystemConfig) // 设置配置文件内容
  11. SystemRouter.POST("getServerInfo", v1.GetServerInfo) // 获取服务器信息
  12. }
  13. }