(ctx context.Context)
| 519 | } |
| 520 | |
| 521 | func (c cmdable) ClientUnpause(ctx context.Context) *BoolCmd { |
| 522 | cmd := NewBoolCmd(ctx, "client", "unpause") |
| 523 | _ = c(ctx, cmd) |
| 524 | return cmd |
| 525 | } |
| 526 | |
| 527 | func (c cmdable) ClientID(ctx context.Context) *IntCmd { |
| 528 | cmd := NewIntCmd(ctx, "client", "id") |
nothing calls this directly
no test coverage detected