forked from GodloveD/salad
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsalad.go
37 lines (31 loc) · 765 Bytes
/
salad.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// +build go1.6
// Copyright 2018 Vanessa Sochat. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package main
import (
"github.com/urfave/cli"
"github.com/vsoch/salad/cmd"
"github.com/vsoch/salad/config"
"os"
)
const Version = "0.0.1"
const Name = "Salad Fork"
const Github = "https://www.github.com/vsoch/salad"
func init() {
config.Version = Version
config.Name = Name
config.Github = Github
}
func main() {
app := cli.NewApp()
app.Name = "Salad Fork"
app.Usage = "Stick this in your salad, with caution, grasshopper!"
app.Version = Version
app.Commands = []cli.Command{
cmd.Fork,
cmd.Spoon,
}
app.Flags = append(app.Flags, []cli.Flag{}...)
app.Run(os.Args)
}