formidable/internal/data/url_matcher.go

8 lines
88 B
Go

package data
import "net/url"
type URLMatcher interface {
Match(url *url.URL) bool
}