├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENCE ├── README.md ├── fastapi_event ├── __init__.py ├── base.py ├── exceptions.py ├── handler.py ├── listener.py └── middleware.py ├── release.sh ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── events.py ├── test_handler.py ├── test_listener.py ├── test_middleware.py └── test_validator.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/README.md -------------------------------------------------------------------------------- /fastapi_event/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/fastapi_event/__init__.py -------------------------------------------------------------------------------- /fastapi_event/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/fastapi_event/base.py -------------------------------------------------------------------------------- /fastapi_event/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/fastapi_event/exceptions.py -------------------------------------------------------------------------------- /fastapi_event/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/fastapi_event/handler.py -------------------------------------------------------------------------------- /fastapi_event/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/fastapi_event/listener.py -------------------------------------------------------------------------------- /fastapi_event/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/fastapi_event/middleware.py -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/release.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/tests/events.py -------------------------------------------------------------------------------- /tests/test_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/tests/test_handler.py -------------------------------------------------------------------------------- /tests/test_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/tests/test_listener.py -------------------------------------------------------------------------------- /tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/tests/test_middleware.py -------------------------------------------------------------------------------- /tests/test_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamhide/fastapi-event/HEAD/tests/test_validator.py --------------------------------------------------------------------------------