mirror of
https://github.com/appwrite/appwrite
synced 2026-04-25 15:37:18 +00:00
5 lines
137 B
JavaScript
5 lines
137 B
JavaScript
|
|
module.exports = async(context) => {
|
||
|
|
await new Promise(resolve => setTimeout(resolve, 1000 * 60));
|
||
|
|
return context.res.send('OK');
|
||
|
|
};
|