using Microsoft.Extensions.DependencyInjection; namespace Kbx.Shared.Runtime; public static class KbxRuntimeRegistration { public static IServiceCollection AddKbxRuntime(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); services.AddScoped(); return services; } }