def main(request, response): headers = [(b"Content-Type", b"text/html")] headers += [(b"Clear-Site-Data", b'"prefetchCache"')] content = f''' {request.url} ''' return 200, headers, content