This commit is contained in:
2026-04-24 17:40:25 +03:30
parent f04a9fe71f
commit 24ed5776bc
16 changed files with 9244 additions and 11 deletions
+11
View File
@@ -0,0 +1,11 @@
from django.http import HttpResponse
from django.urls import path
def test_view(_request):
return HttpResponse("ok")
urlpatterns = [
path("__test__/", test_view),
]