add company app

This commit is contained in:
behruz-dev
2025-08-01 11:07:10 +05:00
parent e8d525ef96
commit 9b403c46da
21 changed files with 190 additions and 2 deletions

12
core/apps/company/urls.py Normal file
View File

@@ -0,0 +1,12 @@
from django.urls import path, include
from core.apps.company.views import company as company_views
urlpatterns = [
path('company/', include(
[
path('list/', company_views.CompanyListApiView.as_view(), name='company-list'),
path('<uuid:id>/', company_views.CompanyDetailApiView.as_view()),
]
)),
]