2025-05-05 15:25:46 +03:30
|
|
|
# Your urls go here
|
2025-05-24 15:01:55 +03:30
|
|
|
|
|
|
|
|
from django.urls import path, include
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
2025-08-06 09:19:47 +03:30
|
|
|
path('web/', include('apps.herd.web.api.v1.urls')),
|
2025-08-19 09:03:41 +03:30
|
|
|
path('pos/', include('apps.herd.pos.api.v1.urls')),
|
2025-08-06 09:19:47 +03:30
|
|
|
path('excel/', include('apps.herd.services.excel.urls')),
|
2025-05-24 15:01:55 +03:30
|
|
|
]
|