scrapper-mandarake/internal/scrapper/interface.go

12 lines
218 B
Go
Raw Normal View History

2026-04-03 20:54:10 +03:00
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()
}