api links

This commit is contained in:
nabijonovdavronbek619@gmail.com
2025-12-02 20:35:46 +05:00
parent b4366eaaba
commit 9d9d5f241c
10 changed files with 48 additions and 21 deletions

7
content/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from .views import get_products, create_contact
urlpatterns = [
path('products/', get_products), # GET
path('contact/', create_contact), # POST
]