(ctx context.Context, workspaceID uuid.UUID)
| 87 | } |
| 88 | |
| 89 | func (c *sdkClient) watchWorkspace(ctx context.Context, workspaceID uuid.UUID) (<-chan codersdk.Workspace, error) { |
| 90 | return c.coderClient.WatchWorkspace(ctx, workspaceID) |
| 91 | } |
| 92 | |
| 93 | func (c *sdkClient) deleteWorkspace(ctx context.Context, workspaceID uuid.UUID) error { |
| 94 | // Create a build with delete transition to delete the workspace |
nothing calls this directly
no test coverage detected