10 lines
223 B
C#
10 lines
223 B
C#
using Microsoft.Extensions.Hosting;
|
|
|
|
var builder = new HostApplicationBuilder();
|
|
builder.AddNLog();
|
|
builder.Services.AddMatchServerService(args);
|
|
|
|
IHost app = builder.Build();
|
|
app.UseMatchServerService(args);
|
|
app.Run();
|