using Microsoft.Extensions.DependencyInjection; namespace zero.Localization; internal static class ServiceCollectionExtensions { public static IServiceCollection AddZeroLocalization(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); return services; } }