Updated audio image extraction logic. Added caching classes.

This commit is contained in:
2025-02-26 19:07:29 -05:00
parent b38e4dc858
commit dfdf514fe2
11 changed files with 259 additions and 14 deletions

View File

@@ -0,0 +1,7 @@
namespace Harmonia.Core.Caching;
public interface ICache<TKey, TValue>
{
TValue? Get(TKey key);
TValue? Refresh(TKey key);
}