geziyor/export.go
2019-06-11 16:10:49 +03:00

7 lines
146 B
Go

package geziyor
// Exporter interface is for extracting data to external resources
type Exporter interface {
Export(exports chan interface{})
}