42_ft_transcendence/notice/routing.py
2024-04-25 15:45:32 +02:00

8 lines
154 B
Python

from django.urls import re_path
from .consumers import NoticeConsumer
websocket_urlpatterns = [
re_path(r'ws/notice$', NoticeConsumer.as_asgi()),
]