from django.urls import path from .consumers import PromptConsumer websocket_urlpatterns = [ path("ws/prompt//", PromptConsumer.as_asgi()), ]