DE
Size: a a a
DE
V
DE
DE
DE
AJ
V
AJ
AJ
V
const echoScene = new Scene('echo')
echoScene.use((ctx, next) => {
ctx.combinator = {}
next()
})
echoScene.enter((ctx) => {
console.log(ctx.combinator) // undefined
ctx.reply('echo scene', keyboard.extra())
})
echoScene.action('edit', (ctx) => {
console.log('edit', ctx.combinator)
return ctx.reply('Hey there')
})
V
AJ
AJ
const echoScene = new Scene('echo')
echoScene.use((ctx, next) => {
ctx.combinator = {}
next()
})
echoScene.enter((ctx) => {
console.log(ctx.combinator) // undefined
ctx.reply('echo scene', keyboard.extra())
})
echoScene.action('edit', (ctx) => {
console.log('edit', ctx.combinator)
return ctx.reply('Hey there')
})
AJ
AJ
AJ
AJ
🦉
🦉