|
- // Package docs Code generated by swaggo/swag. DO NOT EDIT
- package docs
-
- 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": "dengbiao",
- "url": "http://www.swagger.io/support",
- "email": "1239118001@qq.com"
- },
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.html"
- },
- "version": "{{.Version}}"
- },
- "host": "{{.Host}}",
- "basePath": "{{.BasePath}}",
- "paths": {
- "/api/demo": {
- "post": {
- "description": "Demo样例测试",
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "Demo"
- ],
- "summary": "Demo测试",
- "parameters": [
- {
- "description": "用户名密码",
- "name": "req",
- "in": "body",
- "required": true,
- "schema": {}
- }
- ],
- "responses": {
- "200": {
- "description": "token",
- "schema": {
- "type": "object",
- "additionalProperties": true
- }
- },
- "400": {
- "description": "具体错误",
- "schema": {
- "$ref": "#/definitions/md.Response"
- }
- }
- }
- }
- }
- },
- "definitions": {
- "md.Response": {
- "type": "object",
- "properties": {
- "code": {
- "type": "string",
- "example": "响应码"
- },
- "data": {
- "description": "内容"
- },
- "msg": {
- "type": "string",
- "example": "具体错误原因"
- }
- }
- }
- },
- "securityDefinitions": {
- "MasterID": {
- "type": "apiKey",
- "name": "MasterID",
- "in": "header"
- }
- }
- }`
-
- // SwaggerInfo holds exported Swagger Info so clients can modify it
- var SwaggerInfo = &swag.Spec{
- Version: "1.0",
- Host: "localhost:4001",
- BasePath: "",
- Schemes: []string{},
- Title: "蛋蛋星球-管理后台",
- Description: "管理后台接口文档",
- InfoInstanceName: "swagger",
- SwaggerTemplate: docTemplate,
- LeftDelim: "{{",
- RightDelim: "}}",
- }
-
- func init() {
- swag.Register(SwaggerInfo.InstanceName(), SwaggerInfo)
- }
|