Files
Cleanuparr/code/Common/Configuration/IConfig.cs
Marius Nechifor e0a6c7842b add content blocker (#5)
* refactored code
added deluge support
added transmission support
added content blocker
added blacklist and whitelist

* increased level on some logs; updated test docker compose; updated dev appsettings

* updated docker compose and readme

* moved some logs

* fixed env var typo; fixed sonarr and radarr default download client
2024-11-18 20:08:01 +02:00

6 lines
85 B
C#

namespace Common.Configuration;
public interface IConfig
{
void Validate();
}