feat: url based data loading system

This commit is contained in:
2022-05-05 16:22:52 +02:00
parent 2a7dc481b1
commit e05722cc2f
25 changed files with 774 additions and 33 deletions

View File

@ -0,0 +1,7 @@
package data
import "net/url"
type URLMatcher interface {
Match(url *url.URL) bool
}