18 lines
385 B
C#
18 lines
385 B
C#
using KonSoft.Shared.Hosting.Gateways;
|
|
using Volo.Abp;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace KonSoft.InternalGateway
|
|
{
|
|
[DependsOn(
|
|
typeof(KonSoftSharedHostingGatewaysModule)
|
|
)]
|
|
public class InternalGatewayModule : AbpModule
|
|
{
|
|
public override void OnApplicationInitialization(ApplicationInitializationContext context)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|