7 lines
182 B
Python
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()),
|
||
|
|
]
|