api links
This commit is contained in:
7
content/urls.py
Normal file
7
content/urls.py
Normal 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
|
||||
]
|
||||
Reference in New Issue
Block a user