add new app

This commit is contained in:
behruz-dev
2025-08-01 15:24:00 +05:00
parent 9b403c46da
commit a714dbacb3
49 changed files with 579 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from django.urls import path, include
from core.apps.wherehouse.views import wherehouse as wherehouse_views
urlpatterns = [
path('wherehouse/', include(
[
path('list/', wherehouse_views.WhereHouseListApiView.as_view()),
path('<uuid:id>/', wherehouse_views.WhereHouseDetailApiView.as_view()),
]
))
]