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