12 lines
233 B
Python
12 lines
233 B
Python
from app.notification.backend.business.notification_manager import (
|
|
NotificationManager,
|
|
)
|
|
|
|
|
|
class NotificationHub:
|
|
def __init__(
|
|
self,
|
|
):
|
|
self.notification_manager = NotificationManager()
|
|
return
|