nuclei/pkg/protocols/common/marker/marker.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 = "}}"
)