(ctx context.Context, id string)
| 254 | } |
| 255 | |
| 256 | func (s *deleteTaskStore) DeleteTask(ctx context.Context, id string) error { |
| 257 | if err, ok := s.deleteTaskErrByID[strings.TrimSpace(id)]; ok { |
| 258 | return err |
| 259 | } |
| 260 | return s.inMemoryManagerStore.DeleteTask(ctx, id) |
| 261 | } |
| 262 | |
| 263 | func (e *recordingSessionExecutor) StartTaskSession( |
| 264 | ctx context.Context, |
nothing calls this directly
no test coverage detected