1 Star 0 Fork 0

李童/cmdb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docs.go 706 Bytes
一键复制 编辑 原始数据 按行查看 历史
李童 提交于 2023-02-28 11:31 . 添加 swagger ui
package swagger
import (
"gitee.com/vak80/cmdb/version"
"github.com/go-openapi/spec"
)
func Docs(swo *spec.Swagger) {
swo.Info = &spec.Info{
InfoProps: spec.InfoProps{
Title: "BookService",
Description: "Resource for managing Books",
Contact: &spec.ContactInfo{
ContactInfoProps: spec.ContactInfoProps{
Name: "john",
Email: "john@doe.rp",
URL: "http://johndoe.org",
},
},
License: &spec.License{
LicenseProps: spec.LicenseProps{
Name: "MIT",
URL: "http://mit.org",
},
},
Version: version.Short(),
},
}
swo.Tags = []spec.Tag{
{TagProps: spec.TagProps{
Name: "books",
Description: "Managing books"},
},
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/vak80/cmdb.git
git@gitee.com:vak80/cmdb.git
vak80
cmdb
cmdb
v0.0.4

搜索帮助

0d507c66 1850385 C8b1a773 1850385