目录

node.go

优质
小牛编辑
124浏览
2023-12-01

node.go

node 子命令进一步支持 start、stop、join、status 等子命令。

// Cmd returns the cobra command for Nodefunc Cmd() *cobra.Command {    nodeCmd.AddCommand(startCmd())    nodeCmd.AddCommand(statusCmd())    nodeCmd.AddCommand(stopCmd())    nodeCmd.AddCommand(joinCmd())    return nodeCmd}