mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
5 lines
103 B
JavaScript
5 lines
103 B
JavaScript
// A very simple API
|
|
exports.ping = function (callback) {
|
|
callback(null, process.pid + " pong");
|
|
}
|