1
Fork 0
yamdl-playground/yamdl_playground/core/views.py

7 lines
157 B
Python

from .models import Page
from django.http import HttpResponse
import os
def test(request):
return HttpResponse(f"{Page.objects.count()} {os.getpid()}")