13 lines
293 B
Python
13 lines
293 B
Python
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)),
|
|
]
|