def application(environ, start_response): body = b"AzioneLab backend placeholder\n" start_response( "503 Service Unavailable", [ ("Content-Type", "text/plain; charset=utf-8"), ("Content-Length", str(len(body))), ], ) return [body]