mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-05-15 16:49:31 -03:00
git-subtree-dir: go-enry git-subtree-split: 7e3a9a7241b14559854ad041e73d5203a6d3272c
10 lines
177 B
Go
10 lines
177 B
Go
package regex
|
|
|
|
// Package regex abstracts regular expression engine
|
|
// that can be chosen at compile-time by a build tag.
|
|
|
|
const (
|
|
RE2 = "RE2"
|
|
Oniguruma = "Oniguruma"
|
|
)
|