forked from microsoft/kernel-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDependencyInjection.cs
28 lines (24 loc) · 1003 Bytes
/
DependencyInjection.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (c) Microsoft. All rights reserved.
using Microsoft.Extensions.DependencyInjection;
using Microsoft.KernelMemory.ContentStorage;
using Microsoft.KernelMemory.ContentStorage.AzureBlobs;
#pragma warning disable IDE0130 // reduce number of "using" statements
// ReSharper disable once CheckNamespace - reduce number of "using" statements
namespace Microsoft.KernelMemory;
public static partial class KernelMemoryBuilderExtensions
{
public static IKernelMemoryBuilder WithAzureBlobsStorage(this IKernelMemoryBuilder builder, AzureBlobsConfig config)
{
builder.Services.AddAzureBlobsAsContentStorage(config);
return builder;
}
}
public static partial class DependencyInjection
{
public static IServiceCollection AddAzureBlobsAsContentStorage(this IServiceCollection services, AzureBlobsConfig config)
{
return services
.AddSingleton<AzureBlobsConfig>(config)
.AddSingleton<IContentStorage, AzureBlobsStorage>();
}
}