initiate drf app

This commit is contained in:
2025-05-15 18:26:23 +03:00
commit 8e3dfd89b1
86 changed files with 9340 additions and 0 deletions

7
backend/api/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from api.main.views import FAQView
urlpatterns = [
path("v1/faq/", FAQView.as_view(), name='faqMain'),
]