refactor: add notifications module

This commit is contained in:
CREDO23 2026-06-03 18:04:47 +02:00
parent 309bd9a2dd
commit 9575b9d4db
17 changed files with 1555 additions and 0 deletions

View file

@ -0,0 +1,7 @@
"""Notifications HTTP API."""
from __future__ import annotations
from app.notifications.api.api import router
__all__ = ["router"]