mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-16 22:40:24 +00:00
* replace url()'s with re_path() * convert re_path to path * import path instead of re_path * Convert missed re_path to path Co-authored-by: Alexandr Artemyev <mogost@gmail.com>
8 lines
120 B
Python
8 lines
120 B
Python
from django.contrib import admin
|
|
|
|
from django.urls import path
|
|
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
]
|