Files
Asegasa.NET/Servicio Gestion Asegasa/Program.cs
2026-04-28 11:52:16 +02:00

8 lines
170 B
C#

using Servicio_Gestion_Asegasa;
var builder = Host.CreateApplicationBuilder(args);
builder.Services.AddHostedService<Worker>();
var host = builder.Build();
host.Run();