mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
9 lines
256 B
JavaScript
9 lines
256 B
JavaScript
module.exports = function(vfs, options, register) {
|
|
register(null, {
|
|
ping: function (payload, callback) {
|
|
// We simply return the payload, while vfs-socket adds a time stamp
|
|
callback(null, payload);
|
|
}
|
|
});
|
|
};
|