mirror of https://github.com/openspug/spug
				
				
				
			
		
			
				
	
	
		
			11 lines
		
	
	
		
			331 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			331 B
		
	
	
	
		
			Python
		
	
	
# Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug
 | 
						|
# Copyright: (c) <spug.dev@gmail.com>
 | 
						|
# Released under the MIT License.
 | 
						|
from django.urls import path
 | 
						|
from .consumers import *
 | 
						|
 | 
						|
websocket_urlpatterns = [
 | 
						|
    path('ws/exec/<str:token>/', ExecConsumer),
 | 
						|
    path('ws/ssh/<str:token>/<int:id>/', SSHConsumer),
 | 
						|
]
 |