13 lines
288 B
C#
13 lines
288 B
C#
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();
|
|
}
|
|
}
|