pcm-openi/apis/test.go

17 lines
230 B
Go

package apis
import (
"github.com/gin-gonic/gin"
"gitlink.org.cn/JointCloud/pcm-openi/model"
)
type TestApi struct {
}
func (t *TestApi) TestASD(ctx *gin.Context) {
ctx.JSON(200, model.ASD{
Asd: "asd",
Zxc: "zxc",
})
}