2025-05-05 15:25:46 +03:30
|
|
|
# Your urls go here
|
2025-07-02 15:42:51 +03:30
|
|
|
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')),
|
2025-11-26 15:28:14 +03:30
|
|
|
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')),
|
|
|
|
|
|
2025-07-02 15:42:51 +03:30
|
|
|
]
|