sozsoft-platform/api/modules/Sozsoft.Languages/Sozsoft.Languages.Domain/LanguagesDomainModule.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

25 lines
670 B
C#

using Sozsoft.Languages.Localization;
using Volo.Abp.Caching.StackExchangeRedis;
using Volo.Abp.Domain;
using Volo.Abp.Localization;
using Volo.Abp.Modularity;
namespace Sozsoft.Languages;
[DependsOn(
typeof(AbpDddDomainModule),
typeof(AbpLocalizationModule),
typeof(AbpCachingStackExchangeRedisModule),
typeof(LanguagesDomainSharedModule)
)]
public class LanguagesDomainModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<AbpLocalizationOptions>(options =>
{
options.GlobalContributors.Add<DatabaseLocalizationResourceContributor>();
});
}
}