8 lines
199 B
C#
8 lines
199 B
C#
|
using TimedBackgroundTasks;
|
||
|
|
||
|
HostApplicationBuilder builder = Host.CreateApplicationBuilder(args);
|
||
|
builder.Services.AddHostedService<TimedHostedService>();
|
||
|
|
||
|
IHost host = builder.Build();
|
||
|
host.Run();
|