Updated audio image extraction logic. Added caching classes.
This commit is contained in:
7
Harmonia.Core/Caching/ICache.cs
Normal file
7
Harmonia.Core/Caching/ICache.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Harmonia.Core.Caching;
|
||||
|
||||
public interface ICache<TKey, TValue>
|
||||
{
|
||||
TValue? Get(TKey key);
|
||||
TValue? Refresh(TKey key);
|
||||
}
|
||||
Reference in New Issue
Block a user