Coverage for src/lexigram/notification/backends/push/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.15.4, created at 2026-08-26 02:26 +0800

1"""Push notification backends.""" 

2 

3from __future__ import annotations 

4 

5from lexigram.notification.backends.push.apns import APNsPush 

6from lexigram.notification.backends.push.fcm import FCMPush 

7from lexigram.notification.backends.push.web_push import WebPushChannel 

8 

9__all__ = ["APNsPush", "FCMPush", "WebPushChannel"]