package main import ( "log" "os" ) func main() { if err := rootCmd.Execute(); err != nil { log.Println(err) os.Exit(1) } }