go-pathmatch/errors.go

10 lines
101 B
Go
Raw Normal View History

2019-06-21 06:40:37 +00:00
package pathmatch
import (
"errors"
)
var (
errNilTarget = errors.New("pathmatch: Nil Target")
)