Coverage for postrfp/web/hooks/__init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.11.0, created at 2025-10-22 21:34 +0000
« prev ^ index » next coverage.py v7.11.0, created at 2025-10-22 21:34 +0000
1# ruff: noqa: F401, E402
2from .webapp import WebhookApp, PostmarkVars
4"""
5Necessary to import WebhookApp this package __init__ otherwise
6these handlers are not imported and haven't registered
7"""
8from .mail_delivered import DeliveredHook, BounceHook
10__all__ = ["WebhookApp", "PostmarkVars", "DeliveredHook", "BounceHook"]