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