(ctx context.Context)
| 99 | } |
| 100 | |
| 101 | func (c cmdable) ACLCat(ctx context.Context) *StringSliceCmd { |
| 102 | cmd := NewStringSliceCmd(ctx, "acl", "cat") |
| 103 | _ = c(ctx, cmd) |
| 104 | return cmd |
| 105 | } |
| 106 | |
| 107 | func (c cmdable) ACLCatArgs(ctx context.Context, options *ACLCatArgs) *StringSliceCmd { |
| 108 | // if there is a category passed, build new cmd, if there isn't - use the ACLCat method |
no test coverage detected