FG42/john_titor/debug.js

10 lines
236 B
JavaScript
Raw Normal View History

2019-03-19 21:06:04 +00:00
var epc = require("elrpc");
var Promise = require('bluebird');
epc.startServer().then(function(server) {
server.defineMethod("github-notifications", function(args) {
return Promise.resolve(args + "22222");
});
server.wait();
});