first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:20:45 +03:00
commit d50f14bcb1
681 changed files with 65020 additions and 0 deletions

7
contact/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from contact.views import ContactCreate
urlpatterns = [
path('contact/create/', ContactCreate.as_view(), name='contact.create'),
]