Spaces:
Runtime error
Runtime error
Update hf_demo/einstein/urls.py
Browse files- hf_demo/einstein/urls.py +1 -1
hf_demo/einstein/urls.py
CHANGED
|
@@ -2,6 +2,6 @@ from django.urls import path
|
|
| 2 |
|
| 3 |
from einstein.views import FileProcessingView, TestView
|
| 4 |
urlpatterns = [
|
| 5 |
-
path('file_process/', FileProcessingView.as_view(), name='file-process'),
|
| 6 |
path('', TestView.as_view(), name='test'),
|
|
|
|
| 7 |
]
|
|
|
|
| 2 |
|
| 3 |
from einstein.views import FileProcessingView, TestView
|
| 4 |
urlpatterns = [
|
|
|
|
| 5 |
path('', TestView.as_view(), name='test'),
|
| 6 |
+
path('file_process/', FileProcessingView.as_view(), name='file-process'),
|
| 7 |
]
|