Advertisement
joaopaulofcc

Untitled

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