mirror of
https://github.com/django/django.git
synced 2025-09-14 22:45:45 +00:00
7 lines
105 B
Python
7 lines
105 B
Python
from django.urls import path
|
|
|
|
from .models import site
|
|
|
|
urlpatterns = [
|
|
path('admin/', site.urls),
|
|
]
|