├── .gitignore ├── LICENSE ├── README.md ├── bin ├── config.json ├── ytblock ├── ytblock-darwin-386 ├── ytblock-darwin-amd64 ├── ytblock-linux-386 ├── ytblock-linux-amd64 ├── ytblock-linux-arm ├── ytblock-linux-arm64 ├── ytblock-netbsd-386 ├── ytblock-netbsd-amd64 ├── ytblock-rpi ├── ytblock-windows-386.exe └── ytblock-windows-amd64.exe ├── config.json ├── go.mod ├── go.sum └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/README.md -------------------------------------------------------------------------------- /bin/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/bin/config.json -------------------------------------------------------------------------------- /bin/ytblock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/bin/ytblock -------------------------------------------------------------------------------- /bin/ytblock-darwin-386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/bin/ytblock-darwin-386 -------------------------------------------------------------------------------- /bin/ytblock-darwin-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/bin/ytblock-darwin-amd64 -------------------------------------------------------------------------------- /bin/ytblock-linux-386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/bin/ytblock-linux-386 -------------------------------------------------------------------------------- /bin/ytblock-linux-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/bin/ytblock-linux-amd64 -------------------------------------------------------------------------------- /bin/ytblock-linux-arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/bin/ytblock-linux-arm -------------------------------------------------------------------------------- /bin/ytblock-linux-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/bin/ytblock-linux-arm64 -------------------------------------------------------------------------------- /bin/ytblock-netbsd-386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/bin/ytblock-netbsd-386 -------------------------------------------------------------------------------- /bin/ytblock-netbsd-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/bin/ytblock-netbsd-amd64 -------------------------------------------------------------------------------- /bin/ytblock-rpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/bin/ytblock-rpi -------------------------------------------------------------------------------- /bin/ytblock-windows-386.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/bin/ytblock-windows-386.exe -------------------------------------------------------------------------------- /bin/ytblock-windows-amd64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/bin/ytblock-windows-amd64.exe -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/config.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/foae/pihole-youtube-block 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foae/pihole-youtube-block/HEAD/main.go --------------------------------------------------------------------------------