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