Files
RasadDam_Backend/apps/herd/urls.py

10 lines
197 B
Python
Raw Normal View History

# Your urls go here
from django.urls import path, include
urlpatterns = [
2025-08-06 09:19:47 +03:30
path('web/', include('apps.herd.web.api.v1.urls')),
path('excel/', include('apps.herd.services.excel.urls')),
]