(ctx context.Context)
| 93 | } |
| 94 | |
| 95 | func (c cmdable) ACLList(ctx context.Context) *StringSliceCmd { |
| 96 | cmd := NewStringSliceCmd(ctx, "acl", "list") |
| 97 | _ = c(ctx, cmd) |
| 98 | return cmd |
| 99 | } |
| 100 | |
| 101 | func (c cmdable) ACLCat(ctx context.Context) *StringSliceCmd { |
| 102 | cmd := NewStringSliceCmd(ctx, "acl", "cat") |
nothing calls this directly
no test coverage detected