// GENERATED BY THE COMMAND ABOVE; DO NOT EDIT // This file was generated by swaggo/swag package docs import ( "bytes" "encoding/json" "strings" "github.com/alecthomas/template" "github.com/swaggo/swag" ) var doc = `{ "schemes": {{ marshal .Schemes }}, "swagger": "2.0", "info": { "description": "{{.Description}}", "title": "{{.Title}}", "termsOfService": "https://github.com/EDDYCJY/go-gin-example", "contact": {}, "license": { "name": "MIT", "url": "https://github.com/EDDYCJY/go-gin-example/blob/master/LICENSE" }, "version": "{{.Version}}" }, "host": "{{.Host}}", "basePath": "{{.BasePath}}", "paths": { "/api/v1/getAllVehicles": { "get": { "description": "获取所有车辆信息", "summary": "GetAllVehicles", "responses": { "200": { "description": "{ \"code\": 200, \"data\": {}, \"msg\": \"ok\" }", "schema": { "type": "string" } } } } }, "/api/v1/index": { "get": { "description": "test", "summary": "Hello World", "responses": { "200": { "description": "{ \"code\": 200, \"data\": {}, \"msg\": \"ok\" }", "schema": { "type": "string" } } } } } } }` type swaggerInfo struct { Version string Host string BasePath string Schemes []string Title string Description string } // SwaggerInfo holds exported Swagger Info so clients can modify it var SwaggerInfo = swaggerInfo{ Version: "1.0", Host: "", BasePath: "", Schemes: []string{}, Title: "Golang Gin API", Description: "An example of gin", } type s struct{} func (s *s) ReadDoc() string { sInfo := SwaggerInfo sInfo.Description = strings.Replace(sInfo.Description, "\n", "\\n", -1) t, err := template.New("swagger_info").Funcs(template.FuncMap{ "marshal": func(v interface{}) string { a, _ := json.Marshal(v) return string(a) }, }).Parse(doc) if err != nil { return doc } var tpl bytes.Buffer if err := t.Execute(&tpl, sInfo); err != nil { return doc } return tpl.String() } func init() { swag.Register(swag.Name, &s{}) }