using Microsoft.Extensions.DependencyInjection;
namespace DS.Module.MultiLanguage;
///
/// 多语言配置注入
///
public static class MultiLanguageInstall
{
///
///
///
///
///
public static void AddMultiLanguageInstall(this IServiceCollection services)
{
if (services == null) throw new ArgumentNullException(nameof(services));
services.AddScoped();
}
}