8 lines
183 B
Python
8 lines
183 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("contact-us/", views.ContactusAPIView.as_view()),
|
|
path("feedback/", views.FeedbackAPIView.as_view()),
|
|
] |