appwrite/tests/resources/functions/timeout/index.js

5 lines
137 B
JavaScript
Raw Normal View History

2025-07-09 14:58:55 +00:00
module.exports = async(context) => {
await new Promise(resolve => setTimeout(resolve, 1000 * 60));
return context.res.send('OK');
};