feat(clients): add clients app basic structure and endpoints

This commit is contained in:
2026-03-11 18:43:11 +08:00
parent 5d1e1cb7cb
commit 7b6b288c41
13 changed files with 286 additions and 0 deletions

12
apps/clients/api/urls.py Normal file
View File

@@ -0,0 +1,12 @@
from django.urls import path, include
from rest_framework.routers import DefaultRouter
from apps.clients.api.views import ClientViewSet
router = DefaultRouter()
router.register(r"clients", ClientViewSet, basename="client")
urlpatterns = [
path("", include(router.urls)),
]