Coverage for rfpy/web/hooks/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.8.0, created at 2025-04-24 10:52 +0000

1# ruff: noqa: F401, E402 

2from .webapp import WebhookApp, PostmarkVars 

3 

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 

9 

10__all__ = ["WebhookApp", "PostmarkVars", "DeliveredHook", "BounceHook"]