mirror of
https://github.com/appwrite/appwrite
synced 2026-05-06 14:58:33 +00:00
4 lines
137 B
JavaScript
4 lines
137 B
JavaScript
module.exports = async(context) => {
|
|
await new Promise(resolve => setTimeout(resolve, 1000 * 60));
|
|
return context.res.send('OK');
|
|
};
|