├── .gitattributes ├── .github └── workflows │ └── test.yml ├── AGENTS.md ├── CLAUDE.md ├── LICENSE ├── README.md ├── hosty.sh ├── install.sh └── lists ├── blacklist ├── blacklist.sources ├── whitelist └── whitelist.sources /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrovm/hosty/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrovm/hosty/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrovm/hosty/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrovm/hosty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrovm/hosty/HEAD/README.md -------------------------------------------------------------------------------- /hosty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrovm/hosty/HEAD/hosty.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrovm/hosty/HEAD/install.sh -------------------------------------------------------------------------------- /lists/blacklist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lists/blacklist.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrovm/hosty/HEAD/lists/blacklist.sources -------------------------------------------------------------------------------- /lists/whitelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrovm/hosty/HEAD/lists/whitelist -------------------------------------------------------------------------------- /lists/whitelist.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrovm/hosty/HEAD/lists/whitelist.sources --------------------------------------------------------------------------------