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.

19 lines (16 loc) 298 B
const mongoose = require("mongoose"); const Schema = mongoose.Schema; const Task = new Schema( { task_id: { type: String, minlength: 3, maxlength: 30, required: true, }, action: Object, children: [String], }, { _id: false } ); module.exports = Task;