unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
14 lines • 483 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class FeatureTypeService {
constructor({ featureTypeStore }, { getLogger }) {
this.featureTypeStore = featureTypeStore;
this.logger = getLogger('services/feature-type-service.ts');
}
async getAll() {
return this.featureTypeStore.getAll();
}
}
exports.default = FeatureTypeService;
module.exports = FeatureTypeService;
//# sourceMappingURL=feature-type-service.js.map