forked from tcnksm/gcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.go
49 lines (42 loc) · 943 Bytes
/
commands.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
package main
import (
"github.com/mitchellh/cli"
"github.com/tcnksm/gcli/command"
)
// Commands are collections of gcli commands.
func Commands(meta *command.Meta) map[string]cli.CommandFactory {
return map[string]cli.CommandFactory{
"new": func() (cli.Command, error) {
return &command.NewCommand{
Meta: *meta,
}, nil
},
"design": func() (cli.Command, error) {
return &command.DesignCommand{
Meta: *meta,
}, nil
},
"validate": func() (cli.Command, error) {
return &command.ValidateCommand{
Meta: *meta,
}, nil
},
"apply": func() (cli.Command, error) {
return &command.ApplyCommand{
Meta: *meta,
}, nil
},
"list": func() (cli.Command, error) {
return &command.ListCommand{
Meta: *meta,
}, nil
},
"version": func() (cli.Command, error) {
return &command.VersionCommand{
Meta: *meta,
Version: Version,
Revision: GitCommit,
}, nil
},
}
}