This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Require the REPL module | |
// and models | |
const repl = require('repl').start({}) | |
const models = require('./models') | |
// Make the `models` object | |
// a global variable in the | |
// REPL | |
repl.context.models = models |