This commit is contained in:
Harutyun
2023-05-23 01:09:20 +03:00
parent e4f0ef9af2
commit a6f107781e
252 changed files with 37303 additions and 0 deletions
@@ -0,0 +1,7 @@
from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('polls/', include('polls.urls')),
path('admin/', admin.site.urls),
]