NewDryRunClient wraps an existing client and enforces DryRun mode on all mutating api calls.
(c Client)
| 27 | // NewDryRunClient wraps an existing client and enforces DryRun mode |
| 28 | // on all mutating api calls. |
| 29 | func NewDryRunClient(c Client) Client { |
| 30 | return &dryRunClient{client: c} |
| 31 | } |
| 32 | |
| 33 | var _ Client = &dryRunClient{} |
| 34 |
no outgoing calls
no test coverage detected
searching dependent graphs…