// Package main is the entry point for the KAOS supervisor process. // It loads configuration and starts the supervisor. package main import ( "fmt" "log" "os" "github.com/dal/kaos/internal/config" _ "github.com/dal/kaos/internal/supervisor" ) func main() { cfg, err := config.Load() if err != nil { log.Fatalf("Failed to load config: %v", err) } fmt.Fprintf(os.Stdout, "KAOS Supervisor started (timeout=%s, project_path=%s)\n", cfg.Timeout, cfg.ProjectPath) }