Files
ibapp-backend/core/apps/counterparty/urls.py
2025-08-20 13:19:55 +05:00

12 lines
261 B
Python

from django.urls import path, include
from core.apps.counterparty.views import counterparty as cp_views
urlpatterns = [
path('counterparty/', include(
[
path('list/', cp_views.CounterpartyListApiView.as_view()),
]
))
]