mirror of
https://github.com/Sosokker/ku-polls.git
synced 2025-12-19 05:24:05 +01:00
8 lines
170 B
Python
8 lines
170 B
Python
from django.contrib import admin
|
|
from django.urls import include, path
|
|
|
|
urlpatterns = [
|
|
path("polls/", include("polls.urls")),
|
|
path('admin/', admin.site.urls),
|
|
]
|