要求实例化两次类

时间:2017-08-05 08:53:15

标签: javascript node.js

我需要调用一个不应该再次实例化的类的方法,因为它会引发这个错误:

Conflict: terminated by other long poll or webhook

这是我的main.js,在我的节点服务A:

中运行
var telegram = require('./telegram.js');
telegram.hello();

我的电报课正在服务B:

const bot = new TelegramBot(token, {polling: true});

function hello(req) {
        console.log("hello!!");
}

module.exports.hello = hello;

我该怎么办?

0 个答案:

没有答案