cloudcmd/server/root.js
2021-01-21 16:48:08 +02:00

8 lines
134 B
JavaScript

'use strict';
const mellow = require('mellow');
module.exports = (dir, root) => {
return mellow.webToWin(dir, root || '/');
};