UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

11 lines 309 B
class HealthService { constructor({ featureTypeStore, }) { this.featureTypeStore = featureTypeStore; } async dbIsUp() { const row = await this.featureTypeStore.getAll(); return row.length > 0; } } export default HealthService; //# sourceMappingURL=health-service.js.map