index.go 173 B

12345678910
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "icloudapp.cn/tools/entity"
  5. )
  6. func Index(c *gin.Context) {
  7. entity.ResponseSuccess(c, entity.EmptyBodyObject())
  8. }