package main import ( "os" "edge-infra.dev/pkg/edge/controllers/envctl" ) func main() { if err := envctl.Run(); err != nil { os.Exit(1) } }