from django.urls import re_path
from apps.calls.consumers import NotificationConsumer
from typing import Any, cast


websocket_urlpatterns = [
    re_path(
        "ws/notifications/",
        cast(Any, NotificationConsumer.as_asgi()),
        name="ws-notifications"
    ),
]
