mirror of
https://github.com/MOIS3Y/logs-collector.git
synced 2025-02-01 09:20:52 +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")
|
|
]
|