mirror of
https://github.com/jazzband/django-constance.git
synced 2026-04-13 03:31:00 +00:00
8 lines
134 B
Python
8 lines
134 B
Python
from django.contrib import admin
|
|
|
|
from django.conf.urls import url, include
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^admin/', admin.site.urls),
|
|
]
|