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.urls import path
from polls import views
urlpatterns = [
path('', views.index, name='index')
]