Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
telegram.updates.hear('/keyboard', (context) => {
return context.send('There\'s your keyboard!', {
reply_markup: Keyboard.keyboard([
[
Keyboard.textButton('Button'),
],
[
Keyboard.textButton('Another button'),
Keyboard.textButton('But there\'s more!'),
],
[
Keyboard.textButton('So'),
Keyboard.textButton('many'),
Keyboard.textButton('buttons!'),
],
]).resize(),
});