Files
go-desk-service/api/test.go
2025-08-26 18:53:34 +08:00

19 lines
215 B
Go

package api
import (
"net/http"
"github.com/gin-gonic/gin"
)
type Test struct {
}
func (*Test) Status(ctx *gin.Context) {
ctx.JSON(http.StatusOK, gin.H{
"code": 200,
"msg": "成功",
"data": "",
})
}