using FluentStorage.Blobs;
namespace Elsa.Http.FileCaches;
///
/// A file cache that stores files in blob storage using FluentStorage.
///
public class BlobFileCacheStorageProvider : IFileCacheStorageProvider
{
private readonly IBlobStorage _blobStorage;
///
/// Initializes a new instance of the class.
///
public BlobFileCacheStorageProvider(IBlobStorage blobStorage)
{
_blobStorage = blobStorage;
}
///
public IBlobStorage GetStorage()
{
return _blobStorage;
}
}