mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
Tissue service will sanitize the existign database of ingested torrents by matching existing titles with new banned word lists. Now with added kleenex
13 lines
357 B
C#
13 lines
357 B
C#
namespace Tissue.Features.DataProcessing;
|
|
|
|
internal static class ServiceCollectionExtensions
|
|
{
|
|
internal static IServiceCollection AddDataStorage(this IServiceCollection services)
|
|
{
|
|
services.LoadConfigurationFromEnv<PostgresConfiguration>();
|
|
services.AddTransient<IDataStorage, DapperDataStorage>();
|
|
|
|
return services;
|
|
}
|
|
}
|