代码拉取完成,页面将自动刷新
// Copyright 2020 Douyu
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"gitee.com/nonull/eden"
_ "gitee.com/nonull/eden/example/http/gin-swagger/docs"
"gitee.com/nonull/eden/pkg/server/xgin"
"gitee.com/nonull/eden/pkg/xlog"
"github.com/gin-gonic/gin"
"github.com/swaggo/files"
"github.com/swaggo/gin-swagger"
)
// @title Swagger Example API
// @version 1.0
// @description This is a sample server Petstore server.
// @termsOfService http://swagger.io/terms/
// @contact.name API Support
// @contact.url http://www.swagger.io/support
// @contact.email support@swagger.io
// @license.name Apache 2.0
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html
// @host localhost:8080
// @BasePath /v1
func main() {
eng := NewEngine()
if err := eng.Run(); err != nil {
xlog.Panic(err.Error())
}
}
type Engine struct {
jupiter.Application
}
func NewEngine() *Engine {
eng := &Engine{}
if err := eng.Startup(
eng.serveHTTP,
); err != nil {
xlog.Panic("startup", xlog.Any("err", err))
}
return eng
}
// HTTP地址
func (eng *Engine) serveHTTP() error {
server := xgin.StdConfig("http").Build()
url := ginSwagger.URL("http://localhost:8080/swagger/doc.json") // The url pointing to API definition
server.GET("/swagger/*any", ginSwagger.WrapHandler(swaggerFiles.Handler, url))
server.GET("/v1/user/:id", getUser)
return eng.Serve(server)
}
type Response struct {
Code int
Data interface{}
}
type User struct {
Id int
Name string
}
// @Summary get user by ID
// @Description get user by ID
// @Accept json
// @Produce json
// @Param id path int true "user ID"
// @Success 200 object Response "success"
// @Success 400 object Response "failure"
// @Router /user/{id} [get]
func getUser(ctx *gin.Context) {
user := User{
Id: 1,
Name: "xxx",
}
resp := Response{
Code: 0,
Data: user,
}
ctx.JSON(200, resp)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。