Scaffold backend + backend.tests projects

This commit is contained in:
2026-06-11 18:04:42 +00:00
parent cf055c8928
commit 1eb0383834
9 changed files with 148 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/", () => "Hello World!");
app.Run();
public partial class Program { }