docs: project docs, scripts, deployment configs, and evidence

This commit is contained in:
2026-04-02 11:22:17 +08:00
parent 4718980ab5
commit bbeeb63dfa
396 changed files with 165018 additions and 0 deletions

13
docs/docs.go Normal file
View File

@@ -0,0 +1,13 @@
package docs
import "github.com/swaggo/swag"
type swaggerSpec struct{}
func (swaggerSpec) ReadDoc() string {
return SwaggerJSON
}
func init() {
swag.Register(swag.Name, swaggerSpec{})
}