formidable/internal/data/url_matcher.go

8 lines
88 B
Go
Raw Normal View History

2022-05-05 16:22:52 +02:00
package data
import "net/url"
type URLMatcher interface {
Match(url *url.URL) bool
}