This commit is contained in:
2026-03-04 20:05:33 +08:00
parent fdbe06a077
commit 6998d694bb
25 changed files with 572 additions and 37 deletions

6
prompt/url.py Normal file
View File

@@ -0,0 +1,6 @@
from django.urls import path
from .consumers import PromptConsumer
websocket_urlpatterns = [
path("ws/prompt/<int:task_id>/", PromptConsumer.as_asgi()),
]