forked from TrueCloudLab/frostfs-node
[#1105] cli: Add apemanager commands
Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
This commit is contained in:
parent
542d3adcb2
commit
2b02f52cd9
5 changed files with 279 additions and 0 deletions
21
cmd/frostfs-cli/modules/ape_manager/root.go
Normal file
21
cmd/frostfs-cli/modules/ape_manager/root.go
Normal file
|
@ -0,0 +1,21 @@
|
|||
package apemanager
|
||||
|
||||
import (
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
var Cmd = &cobra.Command{
|
||||
Use: "ape-manager",
|
||||
Short: "Operations with APE manager",
|
||||
Long: `Operations with APE manager`,
|
||||
}
|
||||
|
||||
func init() {
|
||||
Cmd.AddCommand(addCmd)
|
||||
Cmd.AddCommand(removeCmd)
|
||||
Cmd.AddCommand(listCmd)
|
||||
|
||||
initAddCmd()
|
||||
initRemoveCmd()
|
||||
initListCmd()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue