mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-06 20:15:17 +02:00
16 lines
428 B
Python
16 lines
428 B
Python
|
|
"""User notifications: persistence, service, and HTTP API.
|
||
|
|
|
||
|
|
Emit notifications via :class:`~app.notifications.service.NotificationService`;
|
||
|
|
the router in :mod:`app.notifications.api` exposes the inbox endpoints.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from app.notifications.persistence import Notification
|
||
|
|
from app.notifications.service import NotificationService
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"Notification",
|
||
|
|
"NotificationService",
|
||
|
|
]
|