mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-06 04:47:50 -05:00
* 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
8 lines
174 B
C#
8 lines
174 B
C#
namespace Domain.Models.Deluge.Exceptions;
|
|
|
|
public class DelugeClientException : Exception
|
|
{
|
|
public DelugeClientException(string message) : base(message)
|
|
{
|
|
}
|
|
} |