-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathrofl.go
More file actions
35 lines (31 loc) · 788 Bytes
/
rofl.go
File metadata and controls
35 lines (31 loc) · 788 Bytes
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
package rofl
import (
"github.com/spf13/cobra"
"github.com/oasisprotocol/cli/cmd/rofl/build"
"github.com/oasisprotocol/cli/cmd/rofl/machine"
"github.com/oasisprotocol/cli/cmd/rofl/provider"
)
var Cmd = &cobra.Command{
Use: "rofl",
Short: "ROFL app management",
Aliases: []string{"r"},
}
func init() {
Cmd.AddCommand(initCmd)
Cmd.AddCommand(createCmd)
Cmd.AddCommand(updateCmd)
Cmd.AddCommand(deployCmd)
Cmd.AddCommand(pushCmd)
Cmd.AddCommand(removeCmd)
Cmd.AddCommand(showCmd)
Cmd.AddCommand(listCmd)
Cmd.AddCommand(setDefaultCmd)
Cmd.AddCommand(trustRootCmd)
Cmd.AddCommand(build.Cmd)
Cmd.AddCommand(identityCmd)
Cmd.AddCommand(secretCmd)
Cmd.AddCommand(upgradeCmd)
Cmd.AddCommand(setAdminCmd)
Cmd.AddCommand(provider.Cmd)
Cmd.AddCommand(machine.Cmd)
}