Skip to main content

ACL CAT

Syntax

ACL CAT [category]

Module

acl

Categories

slow

Description

Lists all the categories. If the optional category is provided, lists all the commands in the category.

Examples

List all categories:

vault, err := echovault.NewEchoVault()
if err != nil {
log.Fatal(err)
}
categories, err := vault.ACLCat()

List all commands/subcommands in pubsub module:

vault, err := echovault.NewEchoVault()
if err != nil {
log.Fatal(err)
}
commands, err := vault.ACLCat("pubsub")