15 lines
306 B
C#
15 lines
306 B
C#
using KonSoft.Admin;
|
|
using KonSoft.Shared.Hosting.Gateways;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace KonSoft.InternalGateway
|
|
{
|
|
[DependsOn(
|
|
typeof(KonSoftSharedHostingGatewaysModule),
|
|
typeof(AdminHttpApiModule)
|
|
)]
|
|
public class InternalGatewayModule : AbpModule
|
|
{
|
|
}
|
|
}
|