Initialize meeting assistant

This commit is contained in:
2026-05-18 23:38:47 +02:00
commit 90df1edc03
20 changed files with 967 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/health", () => Results.Ok(new
{
service = "meeting-assistant",
status = "ok"
}));
app.Run();
public partial class Program;