Spaces:
Runtime error
Runtime error
// 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": "James Campbell", | |
"email": "[email protected]" | |
}, | |
"license": { | |
"name": "Apache 2.0", | |
"url": "http://www.apache.org/licenses/LICENSE-2.0.html" | |
}, | |
"version": "{{.Version}}" | |
}, | |
"host": "{{.Host}}", | |
"basePath": "{{.BasePath}}", | |
"paths": {} | |
}` | |
// SwaggerInfo holds exported Swagger Info so clients can modify it | |
var SwaggerInfo = &swag.Spec{ | |
Version: "1.0", | |
Host: "localhost:8080", | |
BasePath: "/", | |
Schemes: []string{}, | |
Title: "RAGTAG API", | |
Description: "This is the API for the RAGTAG system.", | |
InfoInstanceName: "swagger", | |
SwaggerTemplate: docTemplate, | |
LeftDelim: "{{", | |
RightDelim: "}}", | |
} | |
func init() { | |
swag.Register(SwaggerInfo.InstanceName(), SwaggerInfo) | |
} | |