import got from 'got' import stream from 'node:stream' const headers = { 'Content-Type': contentType } await streamPipeline( got.stream.get(DOWNLOAD_URL, { headers }), new stream.PassThrough(), got.stream.put(UPLOAD_URL, { headers }), )