django test

This commit is contained in:
Sklvd
2023-05-12 23:02:27 +03:00
parent e094efa7aa
commit a657428482
25 changed files with 331 additions and 0 deletions
@@ -0,0 +1,7 @@
from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="index"),
]