mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
7 lines
133 B
JavaScript
7 lines
133 B
JavaScript
'use strict';
|
|
|
|
const mellow = require('mellow');
|
|
|
|
module.exports = (dir, root) => {
|
|
return mellow.webToWin(dir, root || '/');
|
|
};
|