Skip to content

Instantly share code, notes, and snippets.

@rafaeldalsenter
Created April 2, 2020 21:40
Show Gist options
  • Save rafaeldalsenter/b03c7d87483acc962ded3d60b1d86918 to your computer and use it in GitHub Desktop.
Save rafaeldalsenter/b03c7d87483acc962ded3d60b1d86918 to your computer and use it in GitHub Desktop.
Program.cs para o artigo "Ocelot: API Gateway em C# I - ReRoutes e Aggregates"
public class Program
{
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.ConfigureAppConfiguration(ic => ic.AddJsonFile("configuration.json"))
.UseStartup<Startup>();
public static void Main(string[] args)
{
CreateWebHostBuilder(args).Build().Run();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment