Skip to content

Commit

Permalink
Implement newApp function
Browse files Browse the repository at this point in the history
  • Loading branch information
ruedap committed Apr 3, 2015
1 parent aa94494 commit edf8c8c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion main.go
Expand Up @@ -9,12 +9,16 @@ import (
const version string = "0.1.0"

func main() {
newApp().Run(os.Args)
}

func newApp() *cli.App {
app := cli.NewApp()
app.Name = "faw"
app.Version = version
app.Usage = "Font Awesome Workflow for Alfred"
app.Author = "ruedap"
app.Email = "ruedap@ruedap.com"
app.Commands = commands
app.Run(os.Args)
return app
}

0 comments on commit edf8c8c

Please sign in to comment.