mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 21:00:06 +01:00
47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/glueops/autoglue/cmd"
|
|
"github.com/glueops/autoglue/docs"
|
|
"github.com/glueops/autoglue/internal/version"
|
|
)
|
|
|
|
// @title AutoGlue API
|
|
// @version dev
|
|
// @description API for managing K3s clusters across cloud providers
|
|
// @contact.name GlueOps
|
|
|
|
// @servers.url https://autoglue.glueopshosted.com/api/v1
|
|
// @servers.description Production API
|
|
// @servers.url https://autoglue.glueopshosted.rocks/api/v1
|
|
// @servers.description Pre-Production API
|
|
// @servers.url https://autoglue.apps.nonprod.earth.onglueops.rocks/api/v1
|
|
// @servers.description Staging API
|
|
// @servers.url http://localhost:8080/api/v1
|
|
// @servers.description Local dev
|
|
|
|
// @securityDefinitions.apikey BearerAuth
|
|
// @in header
|
|
// @name Authorization
|
|
// @description Bearer token authentication
|
|
|
|
// @securityDefinitions.apikey ApiKeyAuth
|
|
// @in header
|
|
// @name X-API-KEY
|
|
// @description User API key
|
|
|
|
// @securityDefinitions.apikey OrgKeyAuth
|
|
// @in header
|
|
// @name X-ORG-KEY
|
|
// @description Org-level key/secret authentication
|
|
|
|
// @securityDefinitions.apikey OrgSecretAuth
|
|
// @in header
|
|
// @name X-ORG-SECRET
|
|
// @description Org-level secret
|
|
|
|
func main() {
|
|
docs.SwaggerInfo.Version = version.Version
|
|
cmd.Execute()
|
|
}
|