func main()

in cmd/gke-identity-service-migrator/main.go [41:55]


func main() {
	subcommands.Register(subcommands.HelpCommand(), "")
	subcommands.Register(subcommands.FlagsCommand(), "")
	subcommands.Register(subcommands.CommandsCommand(), "")

	subcommands.Register(&FindCRBCommand{}, "")
	subcommands.Register(&FindRBCommand{}, "")

	subcommands.Register(&RewriteCRBCommand{}, "")
	subcommands.Register(&RewriteRBCommand{}, "")

	flag.Parse()
	ctx := context.Background()
	os.Exit(int(subcommands.Execute(ctx)))
}