UNPKG

flowviz

Version:

A framework which provides seamless integration with other phylogenetic tools and frameworks, while allowing workflow scheduling and execution, through the Apache Airflow workflow system.

18 lines (14 loc) 299 B
class Mount { target; source; _type; constructor(target, source, _type) { this.target = target; this.source = source; this._type = _type; } toObj() { return `Mount(target='${this.target}', source='${this.source}', type='${this._type}')`; } } module.exports = Mount;