1
0
Fork 0
mirror of synced 2024-07-26 16:55:55 +12:00
appwrite/tests/resources/functions/timeout/index.php
2023-08-16 08:19:42 +02:00

7 lines
92 B
PHP

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