Socialify

Folder ..

Viewing routing.py
7 lines (5 loc) • 145.0 B

1
2
3
4
5
6
7
from django.urls import re_path

from . import consumers

websocket_urlpatterns = [
    re_path(r'ws/chat', consumers.ChatConsumer.as_asgi()),
]