7 lines
134 B
Python
7 lines
134 B
Python
from django.urls import path
|
|
from .views import getAllTasks
|
|
|
|
urlpatterns = [
|
|
path("getAllTasks", getAllTasks, name="api_view")
|
|
]
|