├── .github ├── release-rule-set.sh └── workflows │ └── release.yaml ├── .gitignore ├── LICENSE ├── README.md ├── adguardsdnsfilter.go ├── go.mod ├── go.sum ├── main.go └── ruleset.go /.github/release-rule-set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmdhs/sing-box-ruleset/HEAD/.github/release-rule-set.sh -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmdhs/sing-box-ruleset/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmdhs/sing-box-ruleset/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmdhs/sing-box-ruleset/HEAD/README.md -------------------------------------------------------------------------------- /adguardsdnsfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmdhs/sing-box-ruleset/HEAD/adguardsdnsfilter.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmdhs/sing-box-ruleset/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmdhs/sing-box-ruleset/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmdhs/sing-box-ruleset/HEAD/main.go -------------------------------------------------------------------------------- /ruleset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmdhs/sing-box-ruleset/HEAD/ruleset.go --------------------------------------------------------------------------------