Files
hrynco-common/HrynCo.Common/HealthChecks/Interfaces/IServiceHealthCheck.cs
T
Anatolii Grynchuk 85b362e8cd chore: add hrynco common library solution
- add the standalone HrynCo.Common solution and projects
- include the shared common library source and tests
- add package metadata and a repo gitignore
2026-05-01 00:17:34 +03:00

8 lines
227 B
C#

namespace HrynCo.Common.HealthChecks.Interfaces;
using Microsoft.Extensions.Diagnostics.HealthChecks;
public interface IServiceHealthCheck
{
Task<HealthCheckResult> CheckHealthAsync(CancellationToken cancellationToken);
}