from django.urls import path
from .consumers import *
websocket_urlpatterns = [
path("ws/osichat/<str:session_id>/", OsitcomChatRoom.as_asgi()),
]