25 lines
759 B
C#
25 lines
759 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.SemanticKernel;
|
|
using Volo.Abp.Caching;
|
|
using Volo.Abp.Domain;
|
|
using Yi.Framework.AiHub.Domain.Shared;
|
|
using Yi.Framework.Mapster;
|
|
using Yi.Framework.SemanticKernel;
|
|
|
|
namespace Yi.Framework.AiHub.Domain
|
|
{
|
|
[DependsOn(
|
|
typeof(YiFrameworkAiHubDomainSharedModule),
|
|
typeof(YiFrameworkMapsterModule),
|
|
typeof(AbpDddDomainModule),
|
|
typeof(YiFrameworkSemanticKernelModule)
|
|
)]
|
|
public class YiFrameworkAiHubDomainModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
var configuration = context.Services.GetConfiguration();
|
|
var services = context.Services;
|
|
}
|
|
}
|
|
} |