package main import ( "fmt" "os") func main() { err := Execute() if err != nil { fmt.Print(err) os.Exit(1) }}