relay/app/sse_notifications/urls.py
2025-12-05 09:13:52 +01:00

6 lines
174 B
Python

from django.urls import path
from .views import SSENotificationsView
urlpatterns = [
path("notifications/", SSENotificationsView.as_view(), name="sse-notifications"),
]