Files
RasadDam_Backend/apps/warehouse/urls.py
2025-07-30 15:29:29 +03:30

10 lines
211 B
Python

# Your urls go here
from django.urls import path, include
urlpatterns = [
path('web/api/', include('apps.warehouse.web.api.v1.urls')),
path('excel/', include('apps.warehouse.services.excel.urls')),
]