[FA-misc] Scaffold ReportingService project

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
gamer147
2026-01-30 16:33:43 -05:00
parent c25f59a4b4
commit 9577aa996a
6 changed files with 102 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
namespace FictionArchive.Service.ReportingService;
public class Program
{
public static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/healthz", () => "ok");
app.Run();
}
}