mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 18:55:26 +00:00
16 lines
331 B
Go
16 lines
331 B
Go
package reporting
|
|
|
|
import (
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/output"
|
|
)
|
|
|
|
// Client is a client for nuclei issue tracking module
|
|
type Client interface {
|
|
RegisterTracker(tracker Tracker)
|
|
RegisterExporter(exporter Exporter)
|
|
Close()
|
|
Clear()
|
|
CreateIssue(event *output.ResultEvent) error
|
|
GetReportingOptions() *Options
|
|
}
|