initial commit

This commit is contained in:
2026-09-05 23:43:46 +03:00
commit 9c91b9bf10
5730 changed files with 768970 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
from django.urls import path
from . import views as v
urlpatterns = [
path('', v.IndexView.as_view(), name='index'),
]