mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-16 22:20:30 +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")),
|
|
]
|