Skip to content

Instantly share code, notes, and snippets.

@rafaeldalsenter
Created April 2, 2020 21:42
Show Gist options
  • Save rafaeldalsenter/dafa32513bab8c602841e60539be2066 to your computer and use it in GitHub Desktop.
Save rafaeldalsenter/dafa32513bab8c602841e60539be2066 to your computer and use it in GitHub Desktop.
Startup.cs para o artigo "Ocelot: API Gateway em C# I - ReRoutes e Aggregates"
public class Startup
{
private readonly IConfiguration _configuration;
public Startup(IConfiguration configuration)
{
_configuration = configuration;
}
public void ConfigureServices(IServiceCollection services)
{
services.AddOcelot(_configuration);
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseOcelot().Wait();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment