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) 328 B
const mongoose = require("mongoose"); const Schema = mongoose.Schema; const General = new Schema( { name: { type: String, minlength: 3, maxlength: 30, required: true, unique: true, }, description: { type: String, maxlength: 100 }, }, { _id: false } ); module.exports = General;