16 lines
188 B
Go
16 lines
188 B
Go
//go:build !gore2regex
|
|
|
|
package regexp
|
|
|
|
import (
|
|
re "regexp"
|
|
)
|
|
|
|
const Version = "stdlib"
|
|
|
|
type Regexp = re.Regexp
|
|
|
|
func MustCompile(str string) *re.Regexp {
|
|
return re.MustCompile(str)
|
|
}
|