@atomist/automation-client
Version:
Atomist API for software low-level client
12 lines • 401 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Default AutomationMetadataProcessor that just passes through the given metadata instance.
*/
class PassThroughMetadataProcessor {
process(metadata, configuration) {
return metadata;
}
}
exports.PassThroughMetadataProcessor = PassThroughMetadataProcessor;
//# sourceMappingURL=MetadataProcessor.js.map