mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 19:45:28 +00:00
12 lines
364 B
Go
12 lines
364 B
Go
package parser
|
|
|
|
import (
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/catalog"
|
|
)
|
|
|
|
type Parser interface {
|
|
LoadTemplate(templatePath string, tagFilter any, extraTags []string, catalog catalog.Catalog) (bool, error)
|
|
ParseTemplate(templatePath string, catalog catalog.Catalog) (any, error)
|
|
LoadWorkflow(templatePath string, catalog catalog.Catalog) (bool, error)
|
|
}
|