Files
digest_app/module_support/api/urls.py
2024-02-26 13:28:32 +05:30

7 lines
182 B
Python

from django.urls import path
from . import views
urlpatterns = [
path("contact-us/", views.ContactusAPIView.as_view()),
path("feedback/", views.FeedbackAPIView.as_view()),
]