[test] rule providers

This commit is contained in:
gVisor bot 2021-11-25 23:20:08 +08:00
parent e52c111ae0
commit 38bb5d9b95

View File

@ -2,7 +2,6 @@ package provider
import "C"
import (
"errors"
"github.com/Dreamacro/clash/component/trie"
"github.com/Dreamacro/clash/constant"
)
@ -108,10 +107,6 @@ type RuleProvider interface {
}
var (
parse = func(ruleType, rule string, params []string) (C.Rule, error) {
return nil, errors.New("unimplemented function")
}
ruleProviders = map[string]*RuleProvider{}
)