mirror of
				https://github.com/MOIS3Y/logs-collector.git
				synced 2025-11-04 01:13:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			249 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			249 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.urls import path
 | 
						|
from . import views
 | 
						|
 | 
						|
 | 
						|
urlpatterns = [
 | 
						|
    path('', views.index, name='index',),
 | 
						|
    path('test/<str:path>/', views.test_page, name='test_page'),
 | 
						|
    path('archives/<ticket>/<archive>', views.download, name="download")
 | 
						|
]
 |