mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 18:11:08 -05:00
7 lines
150 B
Python
7 lines
150 B
Python
from django.urls import path
|
|
from .views import SendEmailView
|
|
|
|
urlpatterns = [
|
|
path('send-email/', SendEmailView.as_view(), name='send-email'),
|
|
]
|