using LiteCharms.Features.TechShop.HealthChecks; using static LiteCharms.Features.TechShop.Extensions.Postgres; namespace LiteCharms.Features.TechShop.Extensions; public static class HealthChecks { public static IServiceCollection AddShopQuartzHealthCheck(this IServiceCollection services) { services.AddHealthChecks().AddCheck("ShopQuartz"); return services; } public static IServiceCollection AddShopPostgresHealthCheck(this IServiceCollection services) { services.AddHealthChecks().AddCheck(TechShopDbConfigName); return services; } }