Add disable_cache option to dns rule

This commit is contained in:
世界
2022-07-24 14:05:06 +08:00
parent 6d8e3235ac
commit 68e8c59225
6 changed files with 127 additions and 82 deletions

View File

@@ -50,3 +50,8 @@ type Rule interface {
Outbound() string
String() string
}
type DNSRule interface {
Rule
DisableCache() bool
}