V
Size: a a a
V
V
DE
V
DE
V
V
DE
{url: 'https://....'}
первым же да?V
DE
DE
V
DE
V
DE
DE
get message () {
if (this.updateType === 'message') {
return this.update.message
}
return this.update[this.updateType] && this.update[this.updateType].message
}
V
DE
// Log middleware
bot.use((ctx, next) => {
const start = new Date()
return next(ctx).then(() => {
console.log('\n\n')
console.log(ctx.message)
console.log(`Response time ${(new Date()) - start}ms`)
// console.log('\n\n')
})
})
DE
V