add new model and change offer models

This commit is contained in:
behruz-dev
2025-08-20 13:19:55 +05:00
parent aa5ff56216
commit 4c3630aca2
17 changed files with 173 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
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()),
]
))
]