using Ocelot.DependencyInjection; using Ocelot.Middleware; //using Ocelot.Provider.Nacos; using Ocelot.Provider.Polly; using Tiobon.Core.Extensions; namespace Tiobon.Core.Gateway.Extensions; public static class CustomOcelotSetup { public static void AddCustomOcelotSetup(this IServiceCollection services) { if (services == null) throw new ArgumentNullException(nameof(services)); services.AddAuthentication_JWTSetup(); services.AddOcelot() .AddDelegatingHandler() //.AddNacosDiscovery() //.AddConsul() .AddPolly(); } public static async Task UseCustomOcelotMildd(this IApplicationBuilder app) { await app.UseOcelot(); return app; } }