go-pathmatch/errors.go

10 lines
101 B
Go

package pathmatch
import (
"errors"
)
var (
errNilTarget = errors.New("pathmatch: Nil Target")
)