mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
6 lines
112 B
Python
6 lines
112 B
Python
from django.urls import include, re_path
|
|
|
|
urlpatterns = [
|
|
re_path(r"^anymail/", include("anymail.urls")),
|
|
]
|