mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
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"
|
||
|
)
|