mirror of
				https://github.com/evraz-hack/backend.git
				synced 2025-11-04 17:47:25 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			226 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			226 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from . import consumers
 | 
						|
from django.urls import path
 | 
						|
 | 
						|
websocket_urlpatterns = [
 | 
						|
    path("", consumers.NotificationsConsumer.as_asgi()),
 | 
						|
    path("<int:approximation>", consumers.NotificationsApproximateConsumer.as_asgi()),
 | 
						|
]
 |