role.go 197 B

12345678910111213
  1. package system
  2. import (
  3. "kpt-tmr-group/pkg/apiok"
  4. "net/http"
  5. "github.com/gin-gonic/gin"
  6. )
  7. func AddRole(c *gin.Context) {
  8. c.JSON(http.StatusOK, apiok.CommonResponse(apiok.NewApiOk(true)))
  9. }