Files
RasadDam_Backend/apps/warehouse/services/excel/urls.py
2025-07-31 12:29:57 +03:30

11 lines
321 B
Python

from django.urls import path, include
from rest_framework.routers import DefaultRouter
from apps.warehouse.services.excel.excel_processing import WareHouseExcelViewSet
router = DefaultRouter()
router.register(r'', WareHouseExcelViewSet, basename='warehouse_excel')
urlpatterns = [
path('', include(router.urls)),
]