我需要调用一个不应该再次实例化的类的方法,因为它会引发这个错误:
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;
我该怎么办?