mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-29 07:53:23 +00:00
6 lines
161 B
Python
6 lines
161 B
Python
from django.urls import path
|
|
from .views import SMTPSettingsView
|
|
|
|
urlpatterns = [
|
|
path('smtp-settings/', SMTPSettingsView.as_view(), name='smtp_settings'),
|
|
] |