Files
django-anymail/tests/test_settings/urls.py
medmunds b4e22c63b3 Reformat code with automated tools
Apply standardized code style
2023-02-06 15:05:24 -08:00

6 lines
112 B
Python

from django.urls import include, re_path
urlpatterns = [
re_path(r"^anymail/", include("anymail.urls")),
]