add server.js
This commit is contained in:
parent
424dff1268
commit
9fa9a49d26
|
@ -0,0 +1,16 @@
|
||||||
|
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();
|
Loading…
Reference in New Issue