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