onionscan/scans/scanner.go

10 lines
203 B
Go
Raw Normal View History

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