mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-10-31 14:20:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			221 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			221 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Copyright (C) 2024 by Animath
 | |
| # SPDX-License-Identifier: GPL-3.0-or-later
 | |
| 
 | |
| from django.urls import path
 | |
| 
 | |
| from .views import ChatView
 | |
| 
 | |
| 
 | |
| app_name = 'chat'
 | |
| 
 | |
| urlpatterns = [
 | |
|     path('', ChatView.as_view(), name='chat'),
 | |
| ]
 |