Extractors removed as they introduce complexity to scraper. Both in learning and developing.
8 lines
210 B
Go
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{})
|
|
}
|