Files
zhamao-framework/src/Custom/global_function.php
2022-03-15 18:05:33 +08:00

11 lines
158 B
PHP

<?php
declare(strict_types=1);
use ZM\Utils\CoroutinePool;
function pgo(callable $func, string $name = 'default')
{
CoroutinePool::go($func, $name);
}