bontaki-engine
Version:
emotions to psychoanalytic metaphor conversion
13 lines (9 loc) • 338 B
JavaScript
const Main = require("./main.model");
const { NlpManager } = require("node-nlp-rn");
const fs = require("fs");
const path = require("path");
const data = require("../data");
const method = { data: data, NlpManager: NlpManager, fs: fs, path: path };
module.exports = function(data) {
return new Main({ ...data, method: method });
}