(ctx context.Context, id string, logs io.Writer)
| 15 | |
| 16 | type requestModeStrategy interface { |
| 17 | Setup(ctx context.Context, id string, logs io.Writer) (url string, token string, err error) |
| 18 | Cleanup(ctx context.Context, id string, logs io.Writer) error |
| 19 | } |
| 20 |