mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 17:25:28 +00:00
* Replacing regex with lexical analyzer taken from 610beb8534/v2/pkg/protocols/common/expressions/expressions.go (L66)
11 lines
226 B
Go
11 lines
226 B
Go
package marker
|
|
|
|
const (
|
|
// General marker (open/close)
|
|
General = "§"
|
|
// ParenthesisOpen marker - begin of a placeholder
|
|
ParenthesisOpen = "{{"
|
|
// ParenthesisClose marker - end of a placeholder
|
|
ParenthesisClose = "}}"
|
|
)
|