mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 20:35:24 +00:00
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 = "}}"
|
||
|
|
)
|