8 lines
185 B
Python
8 lines
185 B
Python
from django.urls import path
|
|
|
|
from .views import NotificationLongPollView
|
|
|
|
urlpatterns = [
|
|
path("long-poll/", NotificationLongPollView.as_view(), name="notification-long-poll"),
|
|
]
|