mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +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');
|
|
};
|