Files
RasadDam_Backend/apps/product/urls.py

7 lines
185 B
Python
Raw Normal View History

from django.urls import path, include
urlpatterns = [
2025-07-31 11:00:50 +03:30
path('web/api/', include('apps.product.web.api.v1.urls')),
path('excel/', include('apps.product.services.excel.urls')),
]