(ctx context.Context)
| 81 | } |
| 82 | |
| 83 | func (c cmdable) ACLUsers(ctx context.Context) *StringSliceCmd { |
| 84 | cmd := NewStringSliceCmd(ctx, "acl", "users") |
| 85 | _ = c(ctx, cmd) |
| 86 | return cmd |
| 87 | } |
| 88 | |
| 89 | func (c cmdable) ACLWhoAmI(ctx context.Context) *StringCmd { |
| 90 | cmd := NewStringCmd(ctx, "acl", "whoami") |
nothing calls this directly
no test coverage detected