10 lines
239 B
C#
10 lines
239 B
C#
namespace SingularityGroup.HotReload {
|
|
public interface IServerHealthCheck {
|
|
bool IsServerHealthy { get; }
|
|
}
|
|
|
|
internal interface IServerHealthCheckInternal : IServerHealthCheck {
|
|
void CheckHealth();
|
|
}
|
|
}
|