Last active
January 24, 2017 22:47
-
-
Save sdomino/f0a574de525468b99a10c6d3c46e47d9 to your computer and use it in GitHub Desktop.
Writing better CLI's one snake at a time: https://medium.com/@skdomino/writing-better-clis-one-snake-at-a-time-d22e50e60056#.1ahuzi4qp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"os" | |
"github.com/nanopack/hoarder/commands" | |
) | |
// | |
func main() { | |
// | |
if err := commands.HoarderCmd.Execute(); err != nil { | |
fmt.Println(err) | |
os.Exit(1) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment