package controllers import "github.com/astaxie/beego/server/web" type ApiController struct { web.Controller } // @Title api调用入口 // @Description api调用入口 // @Param app_id formData string true "应用ID" // @Param timestamp formData int true "unix时间戳" // @Param sign formData string true "签名" // @Param method formData string true "接口名" // @Success 200 {object} controllers.CallResult // @Failure 200 {object} controllers.CallResult // @router / [post] func (c *ApiController) CallAPI() { }