15 lines
123 B
Go
Raw Permalink Normal View History

2017-10-18 12:48:19 -04:00
package main
2017-11-27 19:52:06 +00:00
import (
"fmt"
"os"
)
2017-10-18 12:48:19 -04:00
func main() {
2017-11-27 19:52:06 +00:00
err := Execute()
if err != nil {
fmt.Print(err)
os.Exit(1)
}
2017-10-18 12:48:19 -04:00
}