mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 19:45:28 +00:00
8 lines
116 B
Go
8 lines
116 B
Go
package templates
|
|
|
|
import "regexp"
|
|
|
|
var (
|
|
ReTemplateID = regexp.MustCompile(`^([a-zA-Z0-9]+[-_])*[a-zA-Z0-9]+$`)
|
|
)
|