mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 21:00:06 +01:00
21 lines
378 B
Go
21 lines
378 B
Go
package main
|
|
|
|
import (
|
|
"github.com/glueops/autoglue/cmd/cli"
|
|
"github.com/glueops/autoglue/internal/config"
|
|
)
|
|
|
|
// @title AutoGlue API
|
|
// @version 1.0
|
|
// @description API for managing K3s clusters across cloud providers
|
|
// @BasePath /
|
|
// @schemes http
|
|
|
|
// @securityDefinitions.apikey BearerAuth
|
|
// @in header
|
|
// @name Authorization
|
|
func main() {
|
|
config.Load()
|
|
cli.Execute()
|
|
}
|