10 lines
200 B
Go
10 lines
200 B
Go
|
package scans
|
||
|
|
||
|
import (
|
||
|
"github.com/s-rah/onionscan/report"
|
||
|
)
|
||
|
|
||
|
type Scanner interface {
|
||
|
ScanPage(string, string,*report.OnionScanReport, func(Scanner, string,int, string,*report.OnionScanReport))
|
||
|
}
|