mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2026-02-04 17:53:09 +08: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]+$`)
|
||
|
|
)
|