├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── LICENSE ├── README.md ├── asgi_cors.py ├── setup.cfg ├── setup.py └── test_asgi_cors.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/asgi-cors/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/asgi-cors/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/asgi-cors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/asgi-cors/HEAD/README.md -------------------------------------------------------------------------------- /asgi_cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/asgi-cors/HEAD/asgi_cors.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/asgi-cors/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/asgi-cors/HEAD/setup.py -------------------------------------------------------------------------------- /test_asgi_cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/asgi-cors/HEAD/test_asgi_cors.py --------------------------------------------------------------------------------