mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-20 03:18:07 +08:00
7 lines
126 B
Python
7 lines
126 B
Python
from django.urls import re_path
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = [
|
|
re_path(r'^admin/', admin.site.urls),
|
|
]
|