| 12 | ) |
| 13 | |
| 14 | type TschCreate struct { |
| 15 | Tsch |
| 16 | goexec.Executor |
| 17 | goexec.Cleaner |
| 18 | |
| 19 | IO goexec.ExecutionIO |
| 20 | |
| 21 | NoDelete bool |
| 22 | CallDelete bool |
| 23 | StartDelay time.Duration |
| 24 | StopDelay time.Duration |
| 25 | DeleteDelay time.Duration |
| 26 | TimeOffset time.Duration |
| 27 | // FEATURE: more opts |
| 28 | } |
| 29 | |
| 30 | func (m *TschCreate) Execute(ctx context.Context, execIO *goexec.ExecutionIO) (err error) { |
| 31 |
nothing calls this directly
no outgoing calls
no test coverage detected