You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
537 B
17 lines
537 B
using LINGYUN.Abp.Identity.Notifications;
|
|
using LINGYUN.Abp.Notifications.Common;
|
|
using LINGYUN.Abp.Notifications.EntityFrameworkCore;
|
|
using Volo.Abp.Autofac;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace LINGYUN.Abp.MicroService.AuthServer;
|
|
|
|
[DependsOn(
|
|
typeof(AbpAutofacModule),
|
|
typeof(AbpNotificationsCommonModule),
|
|
typeof(AbpIdentityNotificationsModule),
|
|
typeof(AbpNotificationsEntityFrameworkCoreModule),
|
|
typeof(AuthServerMigrationsEntityFrameworkCoreModule))]
|
|
public class AuthServerDbMigratorModule : AbpModule
|
|
{
|
|
}
|
|
|