appwrite/tests/resources/functions/timeout/index.php
2023-08-16 08:19:42 +02:00

6 lines
92 B
PHP

<?php
return function ($context) {
sleep(60);
return $context->res->send('OK');
};