UNPKG

honeybee-hive

Version:

A node module to allow for volunteer computing, like BOINC.

13 lines (10 loc) 253 B
'use strict'; //Import mongoose const mongoose = require('mongoose'); //Setup schema const dataChunkSchema = mongoose.Schema({ //data of the DataChunk data: String }); //Export schema module.exports = mongoose.model('DataChunk', dataChunkSchema);