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.

17 lines (13 loc) 436 B
const mongoose = require("mongoose"); const Schema = mongoose.Schema; const General = require("./General"); const Access = require("./Access"); const ApiSchema = require("./Api"); const CommandGroupSchema = require("./Library"); const ToolContractSchema = new Schema({ general: General, access: Access, library: [CommandGroupSchema], api: [ApiSchema], }); module.exports = mongoose.model("ToolContract", ToolContractSchema);