from django.urls import re_path
from .consumers import ScraperConsumer
websocket_urlpatterns = [
    re_path(r'^ws/scraper/(?P<user_id>[0-9a-f-]+)/$', ScraperConsumer.as_asgi()),
]
