13 lines
333 B
C#
13 lines
333 B
C#
using Drab.Core.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Drab.Core.Ioc;
|
|
|
|
public static class IocCoreRegister
|
|
{
|
|
public static IServiceCollection AddDrabCore(this IServiceCollection services, IDrabSettings settings)
|
|
{
|
|
services.AddSingleton(settings);
|
|
return services;
|
|
}
|
|
} |