module.exports = app => {
app.post('/api/emailVerified', async (req, res) => {
const { uid } = req.body;
try {
await setTimeout(async () => {
return console.log('One');
}, 2000);
console.log('two');
} catch(e){
console.log(e);
}
});
};