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
This commit is contained in:
Anatolii Grynchuk
2026-05-01 00:17:34 +03:00
commit 85b362e8cd
38 changed files with 1452 additions and 0 deletions
@@ -0,0 +1,8 @@
namespace HrynCo.Common.HealthChecks.Interfaces;
using Microsoft.Extensions.Diagnostics.HealthChecks;
public interface IConfigurationCheck
{
Task<HealthCheckResult> CheckConfigurationAsync(CancellationToken cancellationToken);
}
@@ -0,0 +1,6 @@
namespace HrynCo.Common.HealthChecks.Interfaces;
public interface IDatabaseConnectionChecker
{
Task<bool> CanConnectAsync(CancellationToken cancellationToken);
}
@@ -0,0 +1,8 @@
namespace HrynCo.Common.HealthChecks.Interfaces;
using Microsoft.Extensions.Diagnostics.HealthChecks;
public interface IServiceHealthCheck
{
Task<HealthCheckResult> CheckHealthAsync(CancellationToken cancellationToken);
}