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