ceate excel for herd and livestock
This commit is contained in:
11
apps/livestock/services/excel/urls.py
Normal file
11
apps/livestock/services/excel/urls.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from django.urls import path, include
|
||||
from rest_framework.routers import DefaultRouter
|
||||
|
||||
from apps.livestock.services.excel.excel_processing import LiveStockExcelViewSet
|
||||
|
||||
router = DefaultRouter()
|
||||
router.register(r'', LiveStockExcelViewSet, basename='livestock_excel')
|
||||
|
||||
urlpatterns = [
|
||||
path('', include(router.urls)),
|
||||
]
|
||||
Reference in New Issue
Block a user