88 lines
2.4 KiB
Go
88 lines
2.4 KiB
Go
|
|
// Package docs GENERATED BY SWAG; DO NOT EDIT
|
||
|
|
// This file was generated by swaggo/swag
|
||
|
|
package docs
|
||
|
|
|
||
|
|
import "github.com/swaggo/swag"
|
||
|
|
|
||
|
|
const docTemplatev1 = `{
|
||
|
|
"schemes": {{ marshal .Schemes }},
|
||
|
|
"swagger": "2.0",
|
||
|
|
"info": {
|
||
|
|
"description": "{{escape .Description}}",
|
||
|
|
"title": "{{.Title}}",
|
||
|
|
"termsOfService": "http://swagger.io/terms/",
|
||
|
|
"contact": {
|
||
|
|
"name": "API Support",
|
||
|
|
"url": "http://www.swagger.io/support",
|
||
|
|
"email": "support@swagger.io"
|
||
|
|
},
|
||
|
|
"license": {
|
||
|
|
"name": "Apache 2.0",
|
||
|
|
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
|
||
|
|
},
|
||
|
|
"version": "{{.Version}}"
|
||
|
|
},
|
||
|
|
"host": "{{.Host}}",
|
||
|
|
"basePath": "{{.BasePath}}",
|
||
|
|
"paths": {
|
||
|
|
"/books": {
|
||
|
|
"get": {
|
||
|
|
"description": "get string by ID",
|
||
|
|
"consumes": [
|
||
|
|
"application/json"
|
||
|
|
],
|
||
|
|
"produces": [
|
||
|
|
"application/json"
|
||
|
|
],
|
||
|
|
"summary": "Get a list of books in the the store",
|
||
|
|
"responses": {
|
||
|
|
"200": {
|
||
|
|
"description": "ok",
|
||
|
|
"schema": {
|
||
|
|
"type": "array",
|
||
|
|
"items": {
|
||
|
|
"$ref": "#/definitions/v1.Book"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"definitions": {
|
||
|
|
"v1.Book": {
|
||
|
|
"type": "object",
|
||
|
|
"properties": {
|
||
|
|
"author": {
|
||
|
|
"type": "string"
|
||
|
|
},
|
||
|
|
"id": {
|
||
|
|
"type": "integer"
|
||
|
|
},
|
||
|
|
"title": {
|
||
|
|
"type": "string"
|
||
|
|
},
|
||
|
|
"year": {
|
||
|
|
"type": "integer"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}`
|
||
|
|
|
||
|
|
// SwaggerInfov1 holds exported Swagger Info so clients can modify it
|
||
|
|
var SwaggerInfov1 = &swag.Spec{
|
||
|
|
Version: "1.0",
|
||
|
|
Host: "",
|
||
|
|
BasePath: "/v1",
|
||
|
|
Schemes: []string{},
|
||
|
|
Title: "Swagger Example API",
|
||
|
|
Description: "This is a sample server.",
|
||
|
|
InfoInstanceName: "v1",
|
||
|
|
SwaggerTemplate: docTemplatev1,
|
||
|
|
}
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
swag.Register(SwaggerInfov1.InstanceName(), SwaggerInfov1)
|
||
|
|
}
|