添加项目文件。
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using FileService.Application.StorageContracts;
|
||||
|
||||
namespace FileService.Application.Ports
|
||||
{
|
||||
public interface IStorageRedisCache
|
||||
{
|
||||
Task SetAsync(UploadRuntimeCache upload);
|
||||
Task DeleteAsync(string sessionId);
|
||||
Task DeleteByTaskIdAsync(string taskId);
|
||||
Task<UploadRuntimeCache?> GetAsync(string sessionId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user