mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-16 22:20:30 +00:00
6 lines
108 B
Python
6 lines
108 B
Python
from django.conf.urls import include, url
|
|
|
|
|
|
urlpatterns = [
|
|
url(r"^avatar/", include("avatar.urls")),
|
|
]
|