IDDRS_API/search_tfidf/urls.py

12 lines
300 B
Python
Raw Permalink Normal View History

2023-05-12 11:41:17 +00:00
from django.urls import path, include
from rest_framework import routers
from . import views
router = routers.DefaultRouter()
urlpatterns = [
path('', include(router.urls)),
path('get_input/', views.get_input, name='get_input'),
2023-07-31 07:58:36 +00:00
path('exportPDF/', views.exportPDF, name='exportPDF'),
2023-05-12 11:41:17 +00:00
]