first push

This commit is contained in:
2026-01-18 11:59:48 +03:30
commit 107854bde3
1100 changed files with 291872 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
from rest_framework.routers import DefaultRouter
from django.urls import path, include
from LiveStock.Cooperative import views as cooperative_views
router = DefaultRouter()
router.register(
r'cooperative-views',
cooperative_views.CooperativeViewSet,
basename="cooperative-views"
)
router.register(
r'cooperative-warehouse',
cooperative_views.CooperativeWarehouseDashboardViewSet,
basename="cooperative-warehouse"
)
urlpatterns = [
path('', include(router.urls)),
]