12 lines
358 B
Python
12 lines
358 B
Python
|
|
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),
|
||
|
|
]
|