Coverage for src/lexigram/notification/push/__init__.py: 0%
3 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-26 02:26 +0800
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-26 02:26 +0800
1"""lexigram-notification push submodule."""
3from __future__ import annotations
5from lexigram.notification.push.events import (
6 PushNotificationFailedEvent,
7 PushNotificationSentEvent,
8)
10__all__ = [
11 "PushNotificationFailedEvent",
12 "PushNotificationSentEvent",
13]