from django.urls import path from .views import getAllTasks urlpatterns = [ path("getAllTasks", getAllTasks, name="api_view") ]