feat: 新增ping、telnet系统工具 (#8666)

* feat: 新增ping、telnet系统工具

* perf: 消息返回

Co-authored-by: halo <wuyihuangw@gmail.com>
This commit is contained in:
fit2bot
2022-07-29 10:02:23 +08:00
committed by GitHub
parent ea7133dea0
commit ee1aff243c
6 changed files with 269 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
from django.urls import path
from .. import ws
app_name = 'common'
urlpatterns = [
path('ws/setting/tools/', ws.ToolsWebsocket.as_asgi(), name='setting-tools-ws'),
]