mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
22 lines
470 B
C#
22 lines
470 B
C#
using Volo.Abp.Auditing;
|
|
using Volo.Abp.Autofac;
|
|
using Yi.Abp.Application;
|
|
using Yi.Abp.SqlsugarCore;
|
|
|
|
namespace Yi.Abp.Test
|
|
{
|
|
[DependsOn(
|
|
typeof(YiAbpSqlSugarCoreModule),
|
|
typeof(YiAbpApplicationModule),
|
|
|
|
typeof(AbpAutofacModule),
|
|
typeof(AbpAuditingModule)
|
|
)]
|
|
public class YiAbpTestModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|