local image caching to redis done?
This commit is contained in:
27
NadekoBot.Core/Services/IImageCache.cs
Normal file
27
NadekoBot.Core/Services/IImageCache.cs
Normal file
@ -0,0 +1,27 @@
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace NadekoBot.Core.Services
|
||||
{
|
||||
public interface IImageCache
|
||||
{
|
||||
byte[] Heads { get; }
|
||||
byte[] Tails { get; }
|
||||
|
||||
byte[][] Currency { get; }
|
||||
byte[][] Dice { get; }
|
||||
|
||||
byte[] SlotBackground { get; }
|
||||
byte[][] SlotEmojis { get; }
|
||||
byte[][] SlotNumbers { get; }
|
||||
|
||||
byte[] WifeMatrix { get; }
|
||||
byte[] RategirlDot { get; }
|
||||
|
||||
byte[] XpCard { get; }
|
||||
|
||||
byte[] Rip { get; }
|
||||
byte[] FlowerCircle { get; }
|
||||
|
||||
void Reload();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user