sdkClient is the concrete implementation of the client interface using codersdk.Client.
| 61 | // sdkClient is the concrete implementation of the client interface using |
| 62 | // codersdk.Client. |
| 63 | type sdkClient struct { |
| 64 | coderClient *codersdk.Client |
| 65 | clock quartz.Clock |
| 66 | logger slog.Logger |
| 67 | } |
| 68 | |
| 69 | // newClient creates a new client implementation using the provided codersdk.Client. |
| 70 | func newClient(coderClient *codersdk.Client) client { |
nothing calls this directly
no outgoing calls
no test coverage detected