onionscan/scans/content_scan.go

10 lines
156 B
Go

package scans
import (
"github.com/s-rah/onionscan/report"
)
type ContentScan interface {
ScanContent(content string, report *report.OnionScanReport)
}