Initial version

This commit is contained in:
2026-06-29 07:22:23 +02:00
committed by Jeroen Saey
parent eaf9b8c0d1
commit 1b8914d63a
29 changed files with 5368 additions and 65 deletions
@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
namespace EonaCat.Sync.Cloud.Azure
{
/// <summary>
/// Azure Blob Storage implementation (requires installation of Azure.Storage.Blobs NuGet package).
/// This is a documented interface - actual implementation delegated to extension package.
/// </summary>
public class AzureBlobStorageProvider
{
public string Name => "Azure Blob Storage";
public string Description => "Requires: Install-Package Azure.Storage.Blobs";
public void Initialize(CloudCredentials credentials)
{
throw new NotImplementedException(
"Azure Blob Storage support requires the 'EonaCat.Sync.Cloud.Azure' extension package. " +
"Install it with: Install-Package Azure.Storage.Blobs");
}
}
}