Skip to content

Instantly share code, notes, and snippets.

@smaglio81
Created March 1, 2020 21:34
using System;
using Microsoft.AspNetCore.Routing;
namespace IEndpointRouteBuilderDemo
{
public static class IEndpointRouteBuilderExtensions
{
public static IEndpointRouteBuilder MapSaHealthChecks(this IEndpointRouteBuilder endpoints)
{
// do stuff
return endpoints;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment