2016-04-10 00:04:22 +00:00
|
|
|
package scans
|
|
|
|
|
|
|
|
import (
|
2016-07-31 00:00:42 +00:00
|
|
|
"github.com/s-rah/onionscan/config"
|
2016-04-10 00:04:22 +00:00
|
|
|
"github.com/s-rah/onionscan/report"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Scanner interface {
|
2016-07-31 00:00:42 +00:00
|
|
|
ScanPage(string, string, *report.OnionScanReport, *config.OnionscanConfig, func(Scanner, string, int, string, *report.OnionScanReport, *config.OnionscanConfig))
|
2016-05-26 09:44:55 +00:00
|
|
|
ScrapePage(string, string) (error, []byte, int)
|
2016-04-10 00:04:22 +00:00
|
|
|
}
|