Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created June 2, 2022 19:30
Show Gist options
  • Save awswithdotnet/4bfbbf6d5e4d36d59c212b510040fe30 to your computer and use it in GitHub Desktop.
Save awswithdotnet/4bfbbf6d5e4d36d59c212b510040fe30 to your computer and use it in GitHub Desktop.
minimal-api Program.cs final
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddAWSLambdaHosting(LambdaEventSource.HttpApi);
var app = builder.Build();
app.MapGet("/values", (HttpRequest request) => {
return request?.Query?.Select(s=> s.Value.ToString()).ToArray() ?? new string[0];
}
);
app.Run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment