UNPKG

@kumologica/builder

Version:

Kumologica build and deploy module

23 lines (17 loc) 273 B
class AWSFlowValidator { constructor(log) { if (log) { this.logger = log; } } log(text, calog = true) { if (this.logger) { this.logger(text, calog); } else { console.log(text); } } validate(flow) { } } module.exports = AWSFlowValidator;