forked from TrueCloudLab/frostfs-node
16 lines
273 B
Go
16 lines
273 B
Go
|
package control
|
||
|
|
||
|
import "github.com/spf13/cobra"
|
||
|
|
||
|
var irCmd = &cobra.Command{
|
||
|
Use: "ir",
|
||
|
Short: "Operations with inner ring nodes",
|
||
|
Long: "Operations with inner ring nodes",
|
||
|
}
|
||
|
|
||
|
func initControlIRCmd() {
|
||
|
irCmd.AddCommand(tickEpochCmd)
|
||
|
|
||
|
initControlIRTickEpochCmd()
|
||
|
}
|