2022-05-25 16:15:27 +00:00
|
|
|
package util
|
|
|
|
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
|
|
|
|
var convertCmd = &cobra.Command{
|
|
|
|
Use: "convert",
|
2023-01-27 10:44:39 +00:00
|
|
|
Short: "Convert representation of FrostFS structures",
|
2022-05-25 16:15:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func initConvertCmd() {
|
|
|
|
convertCmd.AddCommand(convertEACLCmd)
|
|
|
|
|
|
|
|
initConvertEACLCmd()
|
|
|
|
}
|