UNPKG

aran-remote

Version:

Deploy local Aran advices on remote processes

9 lines (6 loc) 211 B
const Inline = require("./inline.js"); const Forked = require("./forked.js"); module.exports = (options, callback) => { if (options["inline"]) Inline(options, callback); else Forked(options, callback); };