(ctx context.Context)
| 45 | } |
| 46 | |
| 47 | func (c cmdable) ACLLogReset(ctx context.Context) *StatusCmd { |
| 48 | cmd := NewStatusCmd(ctx, "acl", "log", "reset") |
| 49 | _ = c(ctx, cmd) |
| 50 | return cmd |
| 51 | } |
| 52 | |
| 53 | func (c cmdable) ACLDelUser(ctx context.Context, username string) *IntCmd { |
| 54 | cmd := NewIntCmd(ctx, "acl", "deluser", username) |
nothing calls this directly
no test coverage detected