2025-06-07 09:18:27 +03:30
|
|
|
from django.urls import path, include
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
2025-07-31 11:00:50 +03:30
|
|
|
path('web/api/', include('apps.product.web.api.v1.urls')),
|
2025-08-19 09:03:41 +03:30
|
|
|
path('pos/api/', include('apps.product.pos.api.v1.urls')),
|
2025-07-31 11:00:50 +03:30
|
|
|
path('excel/', include('apps.product.services.excel.urls')),
|
2025-06-07 09:18:27 +03:30
|
|
|
]
|