1
0
Fork 0
mirror of synced 2024-09-08 05:42:15 +12:00
appwrite/tests/resources/functions/timeout/index.php

7 lines
92 B
PHP
Raw Normal View History

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