Apigateway/ApiGateway/Config/AlterUpstream.cs
2022-11-02 11:31:23 -05:00

16 lines
396 B
C#

using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace ApiGateway.Config
{
public class AlterUpstream
{
public static string AlterUpstreamSwaggerJson(HttpContext context, string swaggerJson)
{
var swagger = JObject.Parse(swaggerJson);
// ... alter upstream json
return swagger.ToString(Formatting.Indented);
}
}
}