mirror of
https://github.com/openspug/spug.git
synced 2026-01-25 15:02:04 +00:00
8 lines
186 B
Python
8 lines
186 B
Python
from django.urls import path
|
|
from .consumers import *
|
|
|
|
websocket_urlpatterns = [
|
|
path('ws/exec/<str:token>/', ExecConsumer),
|
|
path('ws/ssh/<str:token>/<int:id>/', SSHConsumer),
|
|
]
|