1package regex 2 3// Package regex abstracts regular expression engine 4// that can be chosen at compile-time by a build tag. 5 6const ( 7 RE2 = "RE2" 8 Oniguruma = "Oniguruma" 9)