mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
11 lines
175 B
JavaScript
11 lines
175 B
JavaScript
|
|
var pmx = require('pmx');
|
|
|
|
pmx.action('example', function(reply) {
|
|
reply({success:true});
|
|
});
|
|
|
|
setInterval(function() {
|
|
// Do not auto exit on empty event loop
|
|
}, 1000);
|