The minimal API was written as below. How can I write a client (something like a proxy) to download the file and then forward the content to another WebAPI server?
app.MapGet("/myapi", () =>
{
FileStream fs = File.OpenRead("my.jpg");
return Results.File(fs, "image/jpeg", "my.jpg");
});