mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-05 06:03:34 +03:00
parent
796eb5c95c
commit
340efef2d8
1 changed files with 5 additions and 0 deletions
|
@ -2,6 +2,7 @@ package provider
|
|||
|
||||
import "C"
|
||||
import (
|
||||
"errors"
|
||||
"github.com/Dreamacro/clash/component/trie"
|
||||
"github.com/Dreamacro/clash/constant"
|
||||
)
|
||||
|
@ -107,6 +108,10 @@ type RuleProvider interface {
|
|||
}
|
||||
|
||||
var (
|
||||
parse = func(ruleType, rule string, params []string) (C.Rule, error) {
|
||||
return nil, errors.New("unimplemented function")
|
||||
}
|
||||
|
||||
ruleProviders = map[string]*RuleProvider{}
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue