代码拉取完成,页面将自动刷新
package public
import (
"gitee.com/ichub/goconfig/common/base/basedto"
"gitee.com/ichub/goweb/common/webserver/funchandler"
"github.com/gin-gonic/gin"
"net/http"
)
type HealthFuncService struct {
funchandler.FuncService
}
func NewHealthFuncService() *HealthFuncService {
return new(HealthFuncService).init()
}
func (this *HealthFuncService) init() *HealthFuncService {
//单接口
// this.WebBasePath = "public" this.InitRoute(this, http.MethodGet, "public")
//多接口
this.InitRouter(this, "public")
this.RegisterRouter(http.MethodGet, "health", this.Execute)
this.RegisterRouter(http.MethodGet, "helloworld", this.helloworld)
return this
}
// @Summary 健康检查
// @Tags 公共服务
// @Produce json
// @Success 200 {object} basedto.IchubResult "成功"
// @Failure 400 {object} string "请求错误"
// @Failure 500 {object} string "内部错误"
// @Router /public/health [get]
func (this *HealthFuncService) Execute(c *gin.Context) {
c.IndentedJSON(http.StatusOK, basedto.ResultSuccessData("ok"))
}
// @Summary Hello
// @Tags 公共服务
// @Produce json
// @Success 200 {object} basedto.IchubResult "成功"
// @Failure 400 {object} string "请求错误"
// @Failure 500 {object} string "内部错误"
// @Router /public/helloworld [get]
func (this *HealthFuncService) helloworld(c *gin.Context) {
c.IndentedJSON(http.StatusOK, basedto.ResultSuccessData("Hello World"))
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。