1package stats 2 3import ( 4 _ "embed" 5 6 _ "github.com/mattn/go-sqlite3" 7) 8 9type StatsDatabase interface { 10 Close() 11 12 InsertComponent(event ComponentEvent) error 13 InsertMatchedRecord(event FuzzingEvent) error 14 InsertError(event ErrorEvent) error 15} 16 17