You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
431 B
C#
19 lines
431 B
C#
using NPin.Application;
|
|
using NPin.SqlSugarCore;
|
|
using Volo.Abp.Auditing;
|
|
using Volo.Abp.Autofac;
|
|
|
|
namespace NPin.Test;
|
|
|
|
[DependsOn(
|
|
typeof(NPinSqlSugarCoreModule),
|
|
typeof(NPinApplicationModule),
|
|
typeof(AbpAutofacModule),
|
|
typeof(AbpAuditingModule)
|
|
)]
|
|
public class NPinTestModule : AbpTestBaseModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
}
|
|
} |