| 123456789101112131415161718 |
- package admin
- import (
- "app/commons/constant"
- "github.com/gin-gonic/gin"
- )
- func (s *Server) SysConfig(ctx *gin.Context) {
- c := s.FromContext(ctx)
- type Request struct {
- }
- req := new(Request)
- if err := c.ShouldBindJSON(&req); err != nil {
- c.Resp(constant.ErrorParams)
- return
- }
- c.Resp(nil)
- }
|