项目重命名
This commit is contained in:
10
MesETL.App/Cache/ICacher.cs
Normal file
10
MesETL.App/Cache/ICacher.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace ConsoleApp2.Cache;
|
||||
|
||||
public interface ICacher
|
||||
{
|
||||
Task<string?> GetStringAsync(string key);
|
||||
Task SetStringAsync(string key, string value);
|
||||
Task<bool> ExistsAsync(string key);
|
||||
Task SetHashAsync(string key, IReadOnlyDictionary<string, string> hash);
|
||||
Task<Dictionary<string, string>> GetHashAsync(string key);
|
||||
}
|
Reference in New Issue
Block a user