This commit is contained in:
2026-06-02 16:25:57 +08:00
24 changed files with 285 additions and 53 deletions
@@ -0,0 +1,10 @@
using FileService.Application.StorageContracts;
namespace FileService.Application.Ports
{
public interface ILocalChunkStorage
{
Task SavePartAsync(
SaveLocalPartCommand command);
}
}