onionscan/scans/scanner.go

10 lines
203 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))
2016-04-10 02:04:22 +02:00
}