Implemented upload and downloading in daemon, api server and frontend

This commit is contained in:
2025-03-04 14:49:32 +01:00
parent 43b04ff630
commit fbf7cb554b
7 changed files with 131 additions and 7 deletions

View File

@@ -53,8 +53,8 @@ public class ServerFileSystemProvider : IFileSystemProvider
await FileSystemService.Mkdir(ServerId, path);
}
public Task<Stream> Read(string path)
public async Task<Stream> Read(string path)
{
throw new NotImplementedException();
return await FileSystemService.Download(ServerId, path);
}
}