mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
module.exports = function(vfs, options, register) {
|
|
register(null, {
|
|
log: function (message, callback) {
|
|
callback = callback || function() {};
|
|
|
|
console.log(message);
|
|
callback();
|
|
}
|
|
});
|
|
}; |