├── .gitattributes ├── .gitignore ├── README.md ├── animedexapi └── README.md └── animedexproxy ├── README.md └── worker.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/CloudflareWorker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/CloudflareWorker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/CloudflareWorker/HEAD/README.md -------------------------------------------------------------------------------- /animedexapi/README.md: -------------------------------------------------------------------------------- 1 | ## Source Code Moved To : https://github.com/TechShreyash/AnimeDexApi -------------------------------------------------------------------------------- /animedexproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/CloudflareWorker/HEAD/animedexproxy/README.md -------------------------------------------------------------------------------- /animedexproxy/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/CloudflareWorker/HEAD/animedexproxy/worker.js --------------------------------------------------------------------------------