10 lines
101 B
Go
10 lines
101 B
Go
|
package pathmatch
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
errNilTarget = errors.New("pathmatch: Nil Target")
|
||
|
)
|