2025-06-17 23:25:55 +08:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2025-03-21 18:24:59 +08:00
|
|
|
|
using Volo.Abp.Domain;
|
2024-04-04 19:28:18 +08:00
|
|
|
|
using Yi.Framework.Caching.FreeRedis;
|
2024-04-04 14:00:32 +08:00
|
|
|
|
using Yi.Framework.ChatHub.Domain.Shared;
|
2025-06-17 23:25:55 +08:00
|
|
|
|
using Yi.Framework.SemanticKernel;
|
2024-04-04 14:00:32 +08:00
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.ChatHub.Domain
|
|
|
|
|
|
{
|
|
|
|
|
|
[DependsOn(
|
|
|
|
|
|
typeof(YiFrameworkChatHubDomainSharedModule),
|
2024-04-04 19:28:18 +08:00
|
|
|
|
typeof(YiFrameworkCachingFreeRedisModule),
|
2025-06-17 23:25:55 +08:00
|
|
|
|
typeof(YiFrameworkSemanticKernelModule),
|
2024-04-04 14:00:32 +08:00
|
|
|
|
typeof(AbpDddDomainModule)
|
2025-06-17 23:25:55 +08:00
|
|
|
|
)]
|
2024-04-04 14:00:32 +08:00
|
|
|
|
public class YiFrameworkChatHubDomainModule : AbpModule
|
|
|
|
|
|
{
|
2025-03-21 18:24:59 +08:00
|
|
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
2024-04-04 14:00:32 +08:00
|
|
|
|
{
|
2025-03-21 18:24:59 +08:00
|
|
|
|
var configuration = context.Services.GetConfiguration();
|
|
|
|
|
|
var services = context.Services;
|
2024-04-04 14:00:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|