emailservice/mailer/urls.py
vickytechkey 663e3cdbd7
All checks were successful
Deploy Beta (NATIVE) / deploy (push) Successful in 45s
Initial commit
2026-08-23 09:28:40 +05:30

7 lines
189 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.dashboard, name='dashboard'),
path('test-email/', views.send_test_email, name='send_test_email'),
]