scrapper-mandarake/internal/scrapper/interface.go
2026-04-03 20:54:10 +03:00

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