1 Star 0 Fork 35

GoTeam/KubeOperator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 781 Bytes
一键复制 编辑 原始数据 按行查看 历史
package main
//go:generate go-bindata -o ./pkg/i18n/locales.go -pkg i18n ./locales/...
//go:generate swag init
import (
_ "github.com/KubeOperator/KubeOperator/docs"
"github.com/KubeOperator/KubeOperator/pkg/server"
_ "golang.org/x/text/message"
_ "golang.org/x/text/message/catalog"
"log"
)
// @title KubeOperator Restful API
// @version.go 1.0
// @termsOfService http://kubeoperator.io
// @contact.name Fit2cloud Support
// @contact.url https://www.fit2cloud.com
// @contact.email support@fit2cloud.com
// @license.name Apache 2.0
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html
// @BasePath /api/v1
// @securityDefinitions.apikey ApiKeyAuth
// @in header
// @name Authorization
func main() {
if err := server.Start(); err != nil {
log.Fatal(err)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cloudgoon/KubeOperator.git
git@gitee.com:cloudgoon/KubeOperator.git
cloudgoon
KubeOperator
KubeOperator
master

搜索帮助