Files
torrentio/src/tissue/Program.cs
iPromKnight 79a6aa3cb0 Improve producer matching - Add tissue service
Tissue service will sanitize the existign database of ingested torrents by matching existing titles with new banned word lists. Now with added kleenex
2024-03-12 10:29:13 +00:00

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();