(client *codersdk.Client, workspaceID uuid.UUID)
| 113 | var _ harness.Runnable = &CleanupRunner{} |
| 114 | |
| 115 | func NewCleanupRunner(client *codersdk.Client, workspaceID uuid.UUID) *CleanupRunner { |
| 116 | return &CleanupRunner{ |
| 117 | client: client, |
| 118 | workspaceID: workspaceID, |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | // Run implements Runnable. |
| 123 | func (r *CleanupRunner) Run(ctx context.Context, _ string, logs io.Writer) error { |
no outgoing calls
no test coverage detected