mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Added the Radarr cacher #865
This commit is contained in:
parent
d5ec429893
commit
1133f02d07
18 changed files with 2695 additions and 47 deletions
11
src/Ombi.Helpers/CacheKeys.cs
Normal file
11
src/Ombi.Helpers/CacheKeys.cs
Normal 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);
|
||||
}
|
||||
}
|
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue