Add russia region

This commit is contained in:
problematicconsumer
2023-10-21 20:28:37 +03:30
parent 3e054df31a
commit 87cf734825
6 changed files with 16 additions and 0 deletions

View File

@@ -90,6 +90,16 @@ List<Rule> rules(RulesRef ref) => switch (ref.watch(regionNotifierProvider)) {
outbound: RuleOutbound.bypass,
),
],
Region.ru => [
const Rule(
id: "id",
name: "name",
enabled: true,
domains: "domain:.ru",
ip: "geoip:ru",
outbound: RuleOutbound.bypass,
),
],
_ => [],
};