Files
medmunds f5f3fc86e6 Simplify url patterns
Favor `django.urls.path` over `re_path` where possible.
2023-02-08 14:23:15 -08:00

6 lines
104 B
Python

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