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