onionscan/scans/scanner.go

11 lines
252 B
Go
Raw Normal View History

2016-04-10 02:04:22 +02:00
package scans
import (
"github.com/s-rah/onionscan/report"
)
type Scanner interface {
2016-04-27 02:47:00 +02:00
ScanPage(string, string, *report.OnionScanReport, func(Scanner, string, int, string, *report.OnionScanReport))
ScrapePage(string, string) (error, []byte, int)
2016-04-10 02:04:22 +02:00
}