django test by perfecto

This commit is contained in:
pErfEcto2
2023-05-04 11:31:11 +03:00
parent d0d2a37782
commit d8897febc5
36 changed files with 298 additions and 0 deletions
@@ -0,0 +1,8 @@
from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="index"),
path("test", views.test, name="other")
]