geziyor/export/export.go
Musab Gültekin 2cab68d2ce Middlewares refactored to multiple files in middleware package.
Extractors removed as they introduce complexity to scraper. Both in learning and developing.
2019-07-04 21:04:29 +03:00

8 lines
210 B
Go

package export
// Exporter interface is for extracting data to external resources.
// Export functions should wait for new data from exports chan.
type Exporter interface {
Export(exports chan interface{})
}