syz/main.go

27 lines
643 B
Go

package main
import (
"git.zhouxhere.com/zhouxhere/syz/bin"
)
// @title syz
// @version 1.0
// @description 一个简单的个人所用的单点登录
// @termsOfService http://localhost:8080/swagger/index.html
// @contact.name zhouxhere
// @contact.url http://localhost:8080/swagger/index.html
// @contact.email zhouxhere@qq.com
// @license.name Apache 2.0
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html
// @host localhost:8080
// @BasePath /
// @externalDocs.description OpenAPI
// @externalDocs.url https://swagger.io/resources/open-api/
func main() {
bin.RunCMD()
}