blob: baf4c4c5817b83ccefbf568b7edc7befc01790c8 (
plain)
1
2
3
4
5
6
7
|
from django.urls import path
from sockets.letters.consumers import ConversationConsumer
websocket_urlpatterns = [
path("ws/letters/<str:username>/", ConversationConsumer.as_asgi()),
]
|