Tissue service will sanitize the existign database of ingested torrents by matching existing titles with new banned word lists. Now with added kleenex
15 lines
300 B
C#
15 lines
300 B
C#
var builder = Host.CreateApplicationBuilder();
|
|
|
|
builder.Configuration
|
|
.AddScrapeConfiguration();
|
|
|
|
builder.Services
|
|
.AddDataStorage()
|
|
.RegisterWordCollections()
|
|
.AddSerilogLogging(builder.Configuration)
|
|
.AddKleenexService();
|
|
|
|
var host = builder.Build();
|
|
|
|
await host.RunAsync();
|