freeleaps-service-hub/app/notification/backend/application/notification_hub.py

12 lines
233 B
Python

from app.notification.backend.business.notification_manager import (
NotificationManager,
)
class NotificationHub:
def __init__(
self,
):
self.notification_manager = NotificationManager()
return