12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // Code generated by swaggo/swag. DO NOT EDIT
- package swagger
- import "github.com/swaggo/swag"
- const docTemplate = `{
- "schemes": {{ marshal .Schemes }},
- "swagger": "2.0",
- "info": {
- "description": "{{escape .Description}}",
- "title": "{{.Title}}",
- "termsOfService": "http://swagger.io/terms/",
- "contact": {
- "name": "liling",
- "url": "http://www.swagger.io/support",
- "email": "3116246@qq.com"
- },
- "license": {
- "name": "none",
- "url": "-"
- },
- "version": "{{.Version}}"
- },
- "host": "{{.Host}}",
- "basePath": "{{.BasePath}}",
- "paths": {}
- }`
- // SwaggerInfo holds exported Swagger Info so clients can modify it
- var SwaggerInfo = &swag.Spec{
- Version: "1.0.0",
- Host: "localhost:9527",
- BasePath: "/api",
- Schemes: []string{},
- Title: "SCD检测工具API",
- Description: "SCD文档管理系统接口文档。本文档仅用于本项目的前端接口说明",
- InfoInstanceName: "swagger",
- SwaggerTemplate: docTemplate,
- }
- func init() {
- swag.Register(SwaggerInfo.InstanceName(), SwaggerInfo)
- }
|