diff --git a/Helpers/SimApiCache.cs b/Helpers/SimApiCache.cs index 7291a52..01aa508 100644 --- a/Helpers/SimApiCache.cs +++ b/Helpers/SimApiCache.cs @@ -19,6 +19,11 @@ public class SimApiCache(IDistributedCache cache) } } + public void Remove(string key) + { + cache.Remove(Prefix + key); + } + public string? Get(string key) { return cache.GetString(Prefix + key);