mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-04-03 15:00:36 +00:00
5 lines
110 B
Python
5 lines
110 B
Python
from django.urls import include, re_path
|
|
|
|
urlpatterns = [
|
|
re_path(r"^avatar/", include("avatar.urls")),
|
|
]
|