FallenBirdyForm/rescuer/urls.py
2023-06-10 16:45:36 +02:00

8 lines
203 B
Python

from django.urls import path
from .views import rescuer_single, rescuer_all
urlpatterns = [
path("all", rescuer_all, name="rescuer_all"),
path("<id>", rescuer_single, name="rescuer_single"),
]