* update rtn to 025 * Implement movie / show type parsing * switch to RTN in collectors * ensure env for pythonnet is loaded, and that requirements copy for qbit * version bump
17 lines
297 B
C#
17 lines
297 B
C#
var builder = WebApplication.CreateBuilder();
|
|
|
|
builder.DisableIpPortBinding();
|
|
|
|
builder.Configuration
|
|
.AddServiceConfiguration();
|
|
|
|
builder.Host
|
|
.SetupSerilog(builder.Configuration);
|
|
|
|
builder.Services
|
|
.RegisterMassTransit()
|
|
.AddDatabase();
|
|
|
|
var app = builder.Build();
|
|
app.Run();
|