-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
25 lines (19 loc) · 805 Bytes
/
index.ts
File metadata and controls
25 lines (19 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
* @module Effect/Health
* @description
* Health monitoring service for checking service availability and system health.
* Replaces Bootstrap Stage6 - HealthCheck with Effect-based monitoring.
* @category Service
*/
// Types
export type { HealthStatus, ServiceHealth, SystemHealth } from "./Type/HealthType.js";
// Interface
export type { HealthService } from "./Interface/HealthService.js";
// Tag
export { HealthTag } from "./Tag/HealthTag.js";
// Implementation helpers
export { CreateServiceHealth, CreateServiceHealthWithNoResponseTime } from "./Implementation/HealthHelper.js";
// Implementations
export { makeHealthChecker, makeMockHealth } from "./Implementation/HealthImplementation.js";
// Layers
export { HealthLive, HealthMock } from "./Implementation/HealthImplementation.js";