ceate excel for herd and livestock

This commit is contained in:
7nimor
2025-08-06 09:19:47 +03:30
parent 0b53df4dfe
commit 8d7af93498
13 changed files with 360 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
from django.urls import path, include
from rest_framework.routers import DefaultRouter
from apps.herd.services.excel.excel_processing import HerdExcelViewSet
router = DefaultRouter()
router.register(r'', HerdExcelViewSet, basename='herd_excel')
urlpatterns = [
path('', include(router.urls)),
]