85b362e8cd
- add the standalone HrynCo.Common solution and projects - include the shared common library source and tests - add package metadata and a repo gitignore
6 lines
166 B
C#
6 lines
166 B
C#
namespace HrynCo.Common.HealthChecks.Interfaces;
|
|
|
|
public interface IDatabaseConnectionChecker
|
|
{
|
|
Task<bool> CanConnectAsync(CancellationToken cancellationToken);
|
|
} |