Files
depot_django/damages_api/urls.py
T
2025-07-15 20:57:15 +03:00

7 lines
154 B
Python

from django.urls import path
from damages_api.views import Damages
urlpatterns = [
path('<int:depot_id>', Damages.as_view(), name='damages_list'),
]