This commit is contained in:
2024-01-23 17:50:29 +01:00
parent 26b1f60948
commit 26e3226ae9
16 changed files with 307 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using HealtRegistry.Models;
namespace HealtRegistry.Services;
public interface IHealthService
{
Dictionary<string, ServiceHealthData> ServiceHealthes { get; }
ServiceHealthes GetServiceHealthes();
void SetServiceHealth(string serviceName, bool health);
}