11 lines
218 B
Go
11 lines
218 B
Go
package scrapper
|
|
|
|
import (
|
|
"context"
|
|
"scrapper-mandarake/internal/common"
|
|
)
|
|
|
|
type PriceScrapper interface {
|
|
Start(ctx context.Context, tasksChan <-chan common.Task, resultsChan chan<- common.Result) error
|
|
Stop()
|
|
}
|