feat(infra): scaffold LmxFakeProxy project with proto and test project

This commit is contained in:
Joseph Doherty
2026-03-19 11:15:54 -04:00
parent 3e93a0d8c3
commit 1b27b89ca0
4 changed files with 208 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddGrpc();
var app = builder.Build();
app.MapGet("/", () => "LmxFakeProxy is running");
app.Run();