You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
123 B

7 years ago
7 years ago
  1. package main
  2. import (
  3. "fmt"
  4. "os"
  5. )
  6. func main() {
  7. err := Execute()
  8. if err != nil {
  9. fmt.Print(err)
  10. os.Exit(1)
  11. }
  12. }