7 lines
183 B
Python
7 lines
183 B
Python
from django.urls import path
|
|
from project.remotectl import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
path('ws/ssh/<uuid:session_id>/stream/', consumers.SSHStreamConsumer.as_asgi()),
|
|
]
|