(client *codersdk.Client, cfg Config)
| 35 | ) |
| 36 | |
| 37 | func NewRunner(client *codersdk.Client, cfg Config) *Runner { |
| 38 | return &Runner{ |
| 39 | client: client, |
| 40 | cfg: cfg, |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | // Run implements Runnable. |
| 45 | func (r *Runner) Run(ctx context.Context, id string, logs io.Writer) error { |
no outgoing calls