-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
executable file
·86 lines (77 loc) · 1.52 KB
/
main.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package main
import (
command "giterate/pkg/commands"
"log"
"os"
"github.com/mitchellh/cli"
)
func main() {
args := os.Args[1:]
cli := cli.CLI{
Args: args,
Commands: Commands,
HelpFunc: cli.BasicHelpFunc("giterate"),
Version: "0.6",
}
status, err := cli.Run()
if err != nil {
log.Fatalf("Cannot run command: %s\n", err)
}
os.Exit(status)
}
var Commands map[string]cli.CommandFactory
func init() {
ui := &cli.BasicUi{Writer: os.Stdout}
Commands = map[string]cli.CommandFactory{
"clone": func() (cli.Command, error) {
return &command.CloneCommand{
Ui: ui,
}, nil
},
"pull": func() (cli.Command, error) {
return &command.PullCommand{
Ui: ui,
}, nil
},
"fetch": func() (cli.Command, error) {
return &command.FetchCommand{
Ui: ui,
}, nil
},
"status": func() (cli.Command, error) {
return &command.StatusCommand{
Ui: ui,
}, nil
},
"checkout": func() (cli.Command, error) {
return &command.CheckoutCommand{
Ui: ui,
}, nil
},
"commit": func() (cli.Command, error) {
return &command.CommitCommand{
Ui: ui,
}, nil
},
"push": func() (cli.Command, error) {
return &command.PushCommand{
Ui: ui,
}, nil
},
"providers": func() (cli.Command, error) {
return &command.ProvidersCommand{
Ui: ui,
}, nil
},
"repositories": func() (cli.Command, error) {
return &command.RepositoriesCommand{
Ui: ui,
}, nil
},
"exec": func() (cli.Command, error) {
return &command.ExecCommand{
Ui: ui,
}, nil
},
}
}