trackmyd-bot/server.js

17 lines
281 B
JavaScript
Raw Normal View History

2019-02-19 14:21:58 +01:00
const Telebot = require('telebot');
const config = require('./config');
const bot = new Telebot({
token: config.app.tokenBot,
usePlugins: ['askUser'],
});
bot.on('/start', (msg) => {
const name = 'user';
bot.sendMessage(msg.from.id, `hello ${name}`);
});
bot.start();