// 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": {}, "license": { "name": "0BSD" }, "version": "{{.Version}}" }, "host": "{{.Host}}", "basePath": "{{.BasePath}}", "paths": { "/api/images": { "get": { "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/api.getImagesOutputImage" } }, "400": { "description": "Bad Request" }, "401": { "description": "Unauthorized" } } } } }, "definitions": { "api.getImagesOutputImage": { "type": "object", "properties": { "aliases": { "type": "array", "items": { "type": "string" } }, "id": { "type": "integer" }, "uploaded_at": { "type": "integer" }, "uploaded_user_id": { "type": "string" } } } } }` // SwaggerInfo holds exported Swagger Info so clients can modify it var SwaggerInfo = &swag.Spec{ Version: "0.0.1", Host: "", BasePath: "/", Schemes: []string{}, Title: "Golang 2025 Final Project", Description: "", InfoInstanceName: "swagger", SwaggerTemplate: docTemplate, LeftDelim: "{{", RightDelim: "}}", } func init() { swag.Register(SwaggerInfo.InstanceName(), SwaggerInfo) }