12 lines
177 B
Python
12 lines
177 B
Python
from django.http import HttpResponse
|
|
from django.urls import path
|
|
|
|
|
|
def test_view(_request):
|
|
return HttpResponse("ok")
|
|
|
|
|
|
urlpatterns = [
|
|
path("__test__/", test_view),
|
|
]
|