Advertisement
joaopaulofcc

Untitled

Nov 17th, 2021
521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.17 KB | None | 0 0
  1. var builder = WebApplication.CreateBuilder(args);
  2. var app = builder.Build();
  3.  
  4. app.MapGet("/", () => Results.Ok(new Todo(Guid.NewGuid(), "Ir a academia", false)));
  5.  
  6. app.Run();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement