mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-04-20 23:11:02 +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')),
|
|
]
|