1
0
Fork 0
mirror of synced 2024-09-07 21:31:38 +12:00
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');
};