package main import ( "os" "github.com/cnachtigall/heatwave-autopilot/internal/cli" ) func main() { if err := cli.Execute(); err != nil { os.Exit(1) } }