Init: bootstrap

This commit is contained in:
Yi-Ting Shih
2025-12-07 02:33:44 +08:00
commit a4096bf1a7
16 changed files with 1052 additions and 0 deletions

40
docs/docs.go Normal file
View File

@@ -0,0 +1,40 @@
// 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": {}
}`
// 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)
}

14
docs/swagger.json Normal file
View File

@@ -0,0 +1,14 @@
{
"swagger": "2.0",
"info": {
"title": "Golang 2025 Final Project",
"termsOfService": "http://swagger.io/terms",
"contact": {},
"license": {
"name": "0BSD"
},
"version": "0.0.1"
},
"basePath": "/",
"paths": {}
}

10
docs/swagger.yaml Normal file
View File

@@ -0,0 +1,10 @@
basePath: /
info:
contact: {}
license:
name: 0BSD
termsOfService: http://swagger.io/terms
title: Golang 2025 Final Project
version: 0.0.1
paths: {}
swagger: "2.0"