mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-10-31 22:24:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			301 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			301 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Copyright (C) 2024 by Animath
 | |
| # SPDX-License-Identifier: GPL-3.0-or-later
 | |
| 
 | |
| import chat.consumers
 | |
| from django.urls import path
 | |
| import draw.consumers
 | |
| 
 | |
| websocket_urlpatterns = [
 | |
|     path("ws/chat/", chat.consumers.ChatConsumer.as_asgi()),
 | |
|     path("ws/draw/", draw.consumers.DrawConsumer.as_asgi()),
 | |
| ]
 |