mirror of
https://github.com/Rushilwiz/drive-pipeline.git
synced 2025-04-09 15:00:20 -04:00
9 lines
253 B
Python
9 lines
253 B
Python
from django.urls import path
|
|
from django.conf.urls.static import static
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('result/', views.results, name='results'),
|
|
path('export/', views.export, name='export'),
|
|
path('', views.index, name='index'),
|
|
] |