mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
10 lines
197 B
C#
10 lines
197 B
C#
namespace NzbDrone.Core.HealthCheck
|
|
{
|
|
public interface IProvideHealthCheck
|
|
{
|
|
HealthCheck Check();
|
|
bool CheckOnStartup { get; }
|
|
bool CheckOnSchedule { get; }
|
|
}
|
|
}
|