Exporter and Extractor interfaces moved to its own package for simplicity of main Geziyor package
This commit is contained in:
8
export/export.go
Normal file
8
export/export.go
Normal file
@ -0,0 +1,8 @@
|
||||
package export
|
||||
|
||||
// Exporter interface is for extracting data to external resources.
|
||||
// Geziyor calls every extractors Export functions before any scraping starts.
|
||||
// Export functions should wait for new data from exports chan.
|
||||
type Exporter interface {
|
||||
Export(exports chan interface{})
|
||||
}
|
Reference in New Issue
Block a user