11 lines
211 B
Go
11 lines
211 B
Go
package tasks
|
|
|
|
import (
|
|
"context"
|
|
"scrapper-mandarake/internal/common"
|
|
)
|
|
|
|
type TaskTransport interface {
|
|
GetTasks(ctx context.Context) <-chan common.Task
|
|
SendResult(ctx context.Context) chan common.Result
|
|
}
|