feat 网关继承微服务Swagger
This commit is contained in:
@ -0,0 +1,18 @@
|
||||
using KonSoft.InternalGateway.Aggregations.Base;
|
||||
using Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations;
|
||||
using Volo.Abp.DependencyInjection;
|
||||
using Volo.Abp.Json;
|
||||
|
||||
namespace KonSoft.InternalGateway.Aggregations.Localization;
|
||||
|
||||
public class LocalizationRemoteService : AggregateRemoteServiceBase<ApplicationLocalizationDto>,
|
||||
ILocalizationRemoteService, ITransientDependency
|
||||
{
|
||||
public LocalizationRemoteService(
|
||||
IHttpContextAccessor httpContextAccessor,
|
||||
IJsonSerializer jsonSerializer,
|
||||
ILogger<AggregateRemoteServiceBase<ApplicationLocalizationDto>> logger)
|
||||
: base(httpContextAccessor, jsonSerializer, logger)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user