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

7 lines
92 B
PHP
Raw Normal View History

2020-12-12 05:42:29 +00:00
<?php
2023-08-16 06:19:42 +00:00
return function ($context) {
sleep(60);
return $context->res->send('OK');
2022-05-23 14:54:50 +00:00
};