mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
12 lines
268 B
C#
12 lines
268 B
C#
namespace NzbDrone.Core.HealthCheck
|
|
{
|
|
public abstract class HealthCheckBase : IProvideHealthCheck
|
|
{
|
|
public abstract HealthCheck Check();
|
|
|
|
public virtual bool CheckOnStartup => true;
|
|
|
|
public virtual bool CheckOnSchedule => true;
|
|
}
|
|
}
|