Files
SPT-Server-Build/Core/Services/Cache/ModHashCacheService.cs
T
2025-01-09 19:26:55 +00:00

30 lines
672 B
C#

namespace Core.Services.Cache;
public class ModHashCacheService
{
public string GetStoredValue(string key)
{
throw new NotImplementedException();
}
public void StoreValue(string key, string value)
{
throw new NotImplementedException();
}
public bool MatchWithStoredHash(string modName, string hash)
{
throw new NotImplementedException();
}
public bool CalculateAndCompareHash(string modName, string modContent)
{
throw new NotImplementedException();
}
public void CalculateAndStoreHash(string modName, string modContent)
{
throw new NotImplementedException();
}
}