Skip to content

Instantly share code, notes, and snippets.

@sdomino
Last active January 24, 2017 22:47
Show Gist options
  • Save sdomino/f0a574de525468b99a10c6d3c46e47d9 to your computer and use it in GitHub Desktop.
Save sdomino/f0a574de525468b99a10c6d3c46e47d9 to your computer and use it in GitHub Desktop.
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