mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 19:35:27 +00:00
* setup claude * migrate to using errkit * fix unused imports + lint errors * update settings.json * fix url encoding issue * fix lint error * fix the path fuzzing component * fix lint error
14 lines
433 B
Go
14 lines
433 B
Go
package templates
|
|
|
|
import (
|
|
"github.com/projectdiscovery/utils/errkit"
|
|
)
|
|
|
|
var (
|
|
ErrMandatoryFieldMissingFmt = errkit.New("mandatory field is missing")
|
|
ErrInvalidField = errkit.New("invalid field format")
|
|
ErrWarningFieldMissing = errkit.New("field is missing")
|
|
ErrCouldNotLoadTemplate = errkit.New("could not load template")
|
|
ErrLoadedWithWarnings = errkit.New("loaded template with syntax warning")
|
|
)
|