mirror of
https://github.com/KUlishevgeniy/c22712.git
synced 2026-09-25 16:40:19 +00:00
7 lines
169 B
Python
7 lines
169 B
Python
from django.contrib import admin
|
|
from django.urls import include, path
|
|
|
|
urlpatterns = [
|
|
path('polls/', include('polls.urls')),
|
|
path('admin/', admin.site.urls),
|
|
] |