Files
shopback/contact/urls.py
Beyhan Oğur d9f1ea341e first commit
2026-04-26 22:27:56 +03:00

8 lines
166 B
Python

from django.urls import path
from contact.views import ContactCreate
urlpatterns = [
path('contact/create/', ContactCreate.as_view(), name='contact.create'),
]