UPDATE
This commit is contained in:
@@ -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),
|
||||
]
|
||||
Reference in New Issue
Block a user