from django.urls import re_path

# Placeholder for websocket routes. Define consumers here when chat websockets are implemented.
websocket_urlpatterns = [
    # Example:
    # re_path(r'ws/chat/(?P<room_name>[^/]+)/$', ChatConsumer.as_asgi()),
]


