-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathmain.go
37 lines (29 loc) · 799 Bytes
/
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
// Stitch is a tool for command-line administration of MongoDB Stitch applications.
package main
import (
"os"
"path/filepath"
"github.com/10gen/stitch-cli/commands"
"github.com/mitchellh/cli"
)
func main() {
c := cli.NewCLI(filepath.Base(os.Args[0]), "0.0.1")
c.Args = os.Args[1:]
var ui cli.Ui = &cli.BasicUi{
Reader: os.Stdin,
Writer: os.Stdout,
ErrorWriter: os.Stderr,
}
c.Commands = map[string]cli.CommandFactory{
"whoami": commands.NewWhoamiCommandFactory(ui),
"login": commands.NewLoginCommandFactory(ui),
"logout": commands.NewLogoutCommandFactory(ui),
"export": commands.NewExportCommandFactory(ui),
"import": commands.NewImportCommandFactory(ui),
}
exitStatus, err := c.Run()
if err != nil {
ui.Error(err.Error())
}
os.Exit(exitStatus)
}