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() }