forked from TrueCloudLab/frostfs-node
14 lines
246 B
Go
14 lines
246 B
Go
package util
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var convertCmd = &cobra.Command{
|
|
Use: "convert",
|
|
Short: "Convert representation of FrostFS structures",
|
|
}
|
|
|
|
func initConvertCmd() {
|
|
convertCmd.AddCommand(convertEACLCmd)
|
|
|
|
initConvertEACLCmd()
|
|
}
|