update excel warehouse

This commit is contained in:
7nimor
2025-07-31 16:21:39 +03:30
parent 40e8005454
commit 1f0628007b
7 changed files with 125 additions and 12 deletions

View File

@@ -0,0 +1,12 @@
from django.urls import path, include
from rest_framework.routers import DefaultRouter
from apps.authorization.services.excel.excel_processing import AuthExcelViewSet
router = DefaultRouter()
router.register(r'', AuthExcelViewSet, basename='user_relations_excel')
urlpatterns = [
path('', include(router.urls)),
]