5 lines
183 B
Python
5 lines
183 B
Python
from app.features.notifications.repository import NotificationsRepository
|
|
|
|
|
|
def get_notifications_repo() -> NotificationsRepository:
|
|
return NotificationsRepository.get_instance()
|