mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
13 lines
400 B
C#
13 lines
400 B
C#
namespace Daybreak.API.Health;
|
|
|
|
public static class WebApplicationBuilderExtensions
|
|
{
|
|
public static WebApplicationBuilder WithHealthChecks(this WebApplicationBuilder builder)
|
|
{
|
|
builder.Services.AddHealthChecks()
|
|
.AddCheck<HooksHealthCheck>(nameof(HooksHealthCheck))
|
|
.AddCheck<AddressHealthCheck>(nameof(AddressHealthCheck));
|
|
return builder;
|
|
}
|
|
}
|