Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created June 28, 2018 21:05
Embed
What would you like to do?
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseHealthCheck("/hc");
app.Run(async (context) =>
{
await context.Response.WriteAsync("Hello World!");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment