1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-17 08:21:34 +01:00
drone-cli/drone/node/node.go

25 lines
430 B
Go
Raw Normal View History

2018-11-26 22:32:34 +01:00
package node
import "github.com/urfave/cli"
// Command exports the registry command set.
var Command = cli.Command{
Name: "node",
Usage: "manage nodes",
Hidden: true,
Subcommands: []cli.Command{
nodeListCmd,
nodeInfoCmd,
nodeCreateCmd,
// nodeUpdateCmd,
// nodeDeleteCmd,
// nodePauseCmd,
// nodeUnpauseCmd,
// nodeLockCmd,
// nodeUnlockCmd,
// nodeInitCmd,
nodeImportCmd,
// nodeKeygenCmd,
},
}