update warehouse excel and urls
This commit is contained in:
11
apps/warehouse/services/excel/urls.py
Normal file
11
apps/warehouse/services/excel/urls.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from django.urls import path, include
|
||||
from rest_framework.routers import DefaultRouter
|
||||
from apps.warehouse.services.excel import excel_processing as excel
|
||||
from apps.warehouse.services.excel.excel_processing import warehouse_excel
|
||||
|
||||
router = DefaultRouter()
|
||||
|
||||
urlpatterns = [
|
||||
path('', include(router.urls)),
|
||||
path('warehouse_excel/', warehouse_excel),
|
||||
]
|
||||
Reference in New Issue
Block a user