mirror of
https://github.com/jazzband/django-axes.git
synced 2026-05-17 12:01:08 +00:00
8 lines
164 B
Python
8 lines
164 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.conf.urls import url
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = [
|
|
url(r'^admin/', admin.site.urls),
|
|
]
|