sceneManager.addScenes([
new StepScene('signup', [
(context) => {
if (context.scene.step.firstTime || !context.text) {
context.send('A');
}
var neww = context.text;
return context.scene.step.next();
},
async (context) => {
await context.send(`${neww}`);
return context.scene.step.next();
}
])
]);