frostfs-node/cmd/neofs-cli/modules/acl/extended/root.go
2022-11-30 16:45:37 +03:00

15 lines
235 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)
Cmd.AddCommand(printEACLCmd)
}