// GENERATED BY THE COMMAND ABOVE; DO NOT EDIT // This file was generated by swaggo/swag at // 2019-02-02 17:46:50.428407 +0800 CST m=+0.087414608 package docs import ( "bytes" "github.com/alecthomas/template" "github.com/swaggo/swag" ) var doc = `{ "swagger": "2.0", "info": { "description": "An example of gin", "title": "Golang Gin API", "termsOfService": "https://chain33-pai", "contact": {}, "license": { "name": "MIT", "url": "https://chain33-pai/blob/master/LICENSE" }, "version": "1.0" }, "host": "{{.Host}}", "basePath": "{{.BasePath}}", "paths": { "/api/v1/articles": { "get": { "produces": [ "application/json" ], "summary": "Get multiple articles", "parameters": [ { "description": "TagID", "name": "tag_id", "in": "body", "schema": { "type": "object" } }, { "description": "State", "name": "state", "in": "body", "schema": { "type": "object" } }, { "description": "CreatedBy", "name": "created_by", "in": "body", "schema": { "type": "object" } } ], "responses": { "200": { "description": "OK", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } } } }, "post": { "produces": [ "application/json" ], "summary": "Add article", "parameters": [ { "description": "TagID", "name": "tag_id", "in": "body", "required": true, "schema": { "type": "object" } }, { "description": "Title", "name": "title", "in": "body", "required": true, "schema": { "type": "object" } }, { "description": "Desc", "name": "desc", "in": "body", "required": true, "schema": { "type": "object" } }, { "description": "Content", "name": "content", "in": "body", "required": true, "schema": { "type": "object" } }, { "description": "CreatedBy", "name": "created_by", "in": "body", "required": true, "schema": { "type": "object" } }, { "description": "State", "name": "state", "in": "body", "required": true, "schema": { "type": "object" } } ], "responses": { "200": { "description": "OK", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } } } } }, "/api/v1/articles/{id}": { "get": { "produces": [ "application/json" ], "summary": "Get a single article", "parameters": [ { "type": "integer", "description": "ID", "name": "id", "in": "path", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } } } }, "put": { "produces": [ "application/json" ], "summary": "Update article", "parameters": [ { "type": "integer", "description": "ID", "name": "id", "in": "path", "required": true }, { "description": "TagID", "name": "tag_id", "in": "body", "schema": { "type": "object" } }, { "description": "Title", "name": "title", "in": "body", "schema": { "type": "object" } }, { "description": "Desc", "name": "desc", "in": "body", "schema": { "type": "object" } }, { "description": "Content", "name": "content", "in": "body", "schema": { "type": "object" } }, { "description": "ModifiedBy", "name": "modified_by", "in": "body", "required": true, "schema": { "type": "object" } }, { "description": "State", "name": "state", "in": "body", "schema": { "type": "object" } } ], "responses": { "200": { "description": "OK", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } } } }, "delete": { "produces": [ "application/json" ], "summary": "Delete article", "parameters": [ { "type": "integer", "description": "ID", "name": "id", "in": "path", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } } } } }, "/api/v1/tags": { "get": { "produces": [ "application/json" ], "summary": "Get multiple article tags", "parameters": [ { "type": "string", "description": "Name", "name": "name", "in": "query" }, { "type": "integer", "description": "State", "name": "state", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } } } }, "post": { "produces": [ "application/json" ], "summary": "Add article tag", "parameters": [ { "description": "Name", "name": "name", "in": "body", "required": true, "schema": { "type": "object" } }, { "description": "State", "name": "state", "in": "body", "schema": { "type": "object" } }, { "description": "CreatedBy", "name": "created_by", "in": "body", "schema": { "type": "object" } } ], "responses": { "200": { "description": "OK", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } } } } }, "/api/v1/tags/export": { "post": { "produces": [ "application/json" ], "summary": "Export article tag", "parameters": [ { "description": "Name", "name": "name", "in": "body", "schema": { "type": "object" } }, { "description": "State", "name": "state", "in": "body", "schema": { "type": "object" } } ], "responses": { "200": { "description": "OK", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } } } } }, "/api/v1/tags/import": { "post": { "produces": [ "application/json" ], "summary": "Import article tag", "parameters": [ { "description": "Excel File", "name": "file", "in": "body", "required": true, "schema": { "type": "object" } } ], "responses": { "200": { "description": "OK", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } } } } }, "/api/v1/tags/{id}": { "put": { "produces": [ "application/json" ], "summary": "Update article tag", "parameters": [ { "type": "integer", "description": "ID", "name": "id", "in": "path", "required": true }, { "description": "ID", "name": "name", "in": "body", "required": true, "schema": { "type": "object" } }, { "description": "State", "name": "state", "in": "body", "schema": { "type": "object" } }, { "description": "ModifiedBy", "name": "modified_by", "in": "body", "required": true, "schema": { "type": "object" } } ], "responses": { "200": { "description": "OK", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } } } }, "delete": { "produces": [ "application/json" ], "summary": "Delete article tag", "parameters": [ { "type": "integer", "description": "ID", "name": "id", "in": "path", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "type": "object", "$ref": "#/definitions/app.Response" } } } } } }, "definitions": { "app.Response": { "type": "object", "properties": { "code": { "type": "integer" }, "data": { "type": "object" }, "msg": { "type": "string" } } } } }` type swaggerInfo struct { Version string Host string BasePath string Title string Description string } // SwaggerInfo holds exported Swagger Info so clients can modify it var SwaggerInfo swaggerInfo type s struct{} func (s *s) ReadDoc() string { t, err := template.New("swagger_info").Parse(doc) if err != nil { return doc } var tpl bytes.Buffer if err := t.Execute(&tpl, SwaggerInfo); err != nil { return doc } return tpl.String() } func init() { swag.Register(swag.Name, &s{}) }