# Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug # Copyright: (c) # Released under the MIT License. from django.urls import path from .consumers import * websocket_urlpatterns = [ path('ws/exec//', ExecConsumer), path('ws/ssh///', SSHConsumer), ]