10 lines
200 B
Python
10 lines
200 B
Python
from django.urls import path
|
|
|
|
from apps.contacts.api.views import ContactSubmissionView
|
|
|
|
app_name = "contacts"
|
|
|
|
urlpatterns = [
|
|
path("", ContactSubmissionView.as_view(), name="contact-submit"),
|
|
]
|