Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/pkg/loader/parser/parser.go
2070 views
1
package parser
2
3
import (
4
"github.com/projectdiscovery/nuclei/v3/pkg/catalog"
5
)
6
7
type Parser interface {
8
LoadTemplate(templatePath string, tagFilter any, extraTags []string, catalog catalog.Catalog) (bool, error)
9
ParseTemplate(templatePath string, catalog catalog.Catalog) (any, error)
10
LoadWorkflow(templatePath string, catalog catalog.Catalog) (bool, error)
11
}
12
13