2025-10-02 20:35:53 +03:00
|
|
|
package parsers
|
|
|
|
|
|
|
|
|
|
import (
|
2025-10-03 19:17:01 +03:00
|
|
|
"task-processor/internal/appState"
|
|
|
|
|
"task-processor/internal/shared"
|
2025-10-02 20:35:53 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type TaskHandler interface {
|
2025-10-06 23:12:05 +03:00
|
|
|
HandleTasks(tasks []shared.Task, sender chan shared.TaskResult, state *appState.State)
|
2025-10-02 20:35:53 +03:00
|
|
|
}
|