Added the Radarr cacher #865

This commit is contained in:
tidusjar 2017-06-02 23:17:51 +01:00
commit 1133f02d07
18 changed files with 2695 additions and 47 deletions

View file

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Ombi.Helpers
{
public static class CacheKeys
{
public const string RadarrCacher = nameof(RadarrCacher);
}
}

View file

@ -6,5 +6,6 @@ namespace Ombi.Helpers
{
public static EventId ApiException => new EventId(1000);
public static EventId CacherException => new EventId(2000);
public static EventId RadarrCacherException => new EventId(2001);
}
}