5 lines
133 B
Python
5 lines
133 B
Python
from django.urls import path
|
|
|
|
from .views import rescuer_single
|
|
|
|
urlpatterns = [path("<id>", rescuer_single, name="rescuer_single")]
|