cloudcmd/server/root.js
2023-07-09 12:43:24 +03:00

7 lines
133 B
JavaScript

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