#nullable enable using Bit.Core.Platform.Installations; using Microsoft.Extensions.DependencyInjection; namespace Bit.Core.Platform; public static class PlatformServiceCollectionExtensions { /// /// Extend DI to include commands and queries exported from the Platform /// domain. /// public static IServiceCollection AddPlatformServices(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); return services; } }