2025-03-18 08:46:50 +08:00

12 lines
236 B
Python

# -*- coding: utf-8 -*-
"""
@Remark: websocket的路由文件
"""
from django.urls import re_path,path
from . import consumers
websocket_urlpatterns = [
re_path(r'^ws/webssh/$', consumers.TerminalConsumer.as_asgi()),
]