package acl import ( "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/modules/acl/basic" "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/modules/acl/extended" "github.com/spf13/cobra" ) var Cmd = &cobra.Command{ Use: "acl", Short: "Operations with Access Control Lists", } func init() { Cmd.AddCommand(extended.Cmd) Cmd.AddCommand(basic.Cmd) }