10 lines
263 B
Python
10 lines
263 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'pp_parser'
|
|
|
|
urlpatterns = [
|
|
path('parse', views.parse, name='parse'),
|
|
path('clearTable', views.clearTable, name='clearTable'),
|
|
path('upload_file', views.upload_file, name='upload_file'),
|
|
] |