Files

11 lines
340 B
Python
Raw Permalink Normal View History

# Your urls go here
from django.urls import path, include
urlpatterns = [
2025-07-30 15:29:29 +03:30
path('web/api/', include('apps.warehouse.web.api.v1.urls')),
2025-08-20 14:44:43 +03:30
path('pos/api/', include('apps.warehouse.pos.api.v1.urls')),
path('pos/api/', include('apps.warehouse.pos.api.v2.urls')),
2025-07-30 15:29:29 +03:30
path('excel/', include('apps.warehouse.services.excel.urls')),
]