Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
from django.http import HttpResponse
from django.urls import path
urlpatterns = [
path("", lambda request: HttpResponse("root is here")),
]