Support for synchronous lambdas

This commit is contained in:
2024-10-18 02:05:46 +02:00
parent fff6f2c7ba
commit 8789f994bf
3 changed files with 19 additions and 5 deletions
@@ -4,7 +4,7 @@
public class SimpleRoute2
{
[GeneratePost("somethingSimple")]
public async Task<IResult> GetSomething()
public IResult GetSomething()
{
return Results.Ok();
}