frostfs-node/cmd/neofs-cli/modules/acl/extended/root.go
Alex Vanin 08e83a2bc7 [#1092] neofs-cli: Add 'acl extended create' command
Follows neofs-cli refactor scheme from #1074

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
2022-01-28 10:39:18 +03:00

12 lines
200 B
Go

package extended
import "github.com/spf13/cobra"
var Cmd = &cobra.Command{
Use: "extended",
Short: "Operations with Extended Access Control Lists",
}
func init() {
Cmd.AddCommand(createCmd)
}