6 lines
174 B
Python
6 lines
174 B
Python
from django.urls import path
|
|
from .views import SSENotificationsView
|
|
|
|
urlpatterns = [
|
|
path("notifications/", SSENotificationsView.as_view(), name="sse-notifications"),
|
|
]
|