mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 10:45:25 +00:00
16 lines
244 B
Go
16 lines
244 B
Go
|
|
package stats
|
||
|
|
|
||
|
|
import (
|
||
|
|
_ "embed"
|
||
|
|
|
||
|
|
_ "github.com/mattn/go-sqlite3"
|
||
|
|
)
|
||
|
|
|
||
|
|
type StatsDatabase interface {
|
||
|
|
Close()
|
||
|
|
|
||
|
|
InsertComponent(event ComponentEvent) error
|
||
|
|
InsertMatchedRecord(event FuzzingEvent) error
|
||
|
|
InsertError(event ErrorEvent) error
|
||
|
|
}
|