django-avatar/tests/urls.py

6 lines
110 B
Python
Raw Permalink Normal View History

2022-07-16 21:30:56 +00:00
from django.urls import include, re_path
2016-02-09 15:42:29 +00:00
urlpatterns = [
2022-07-16 21:30:56 +00:00
re_path(r"^avatar/", include("avatar.urls")),
2016-02-09 15:42:29 +00:00
]