Files
atabackend/contact/urls.py
Beyhan Oğur d50f14bcb1 first commit
2026-04-26 22:20:45 +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'),
]