source: Program.cs@ 08aefc6

main
Last change on this file since 08aefc6 was 08aefc6, checked in by mmilevski <markomilevski3@…>, 4 weeks ago

Initial commit

  • Property mode set to 100644
File size: 129 bytes
Line 
1var builder = WebApplication.CreateBuilder(args);
2var app = builder.Build();
3
4app.MapGet("/", () => "Hello World!");
5
6app.Run();
Note: See TracBrowser for help on using the repository browser.