All checks were successful
Deploy Beta (NATIVE) / deploy (push) Successful in 45s
7 lines
189 B
Python
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'),
|
|
]
|