package main import ( "os" "sunhpc/internal/cli" ) func main() { rootCmd := cli.NewRootCmd() if err := rootCmd.Execute(); err != nil { os.Exit(1) } }