zhamao-framework/src/Custom/global_function.php

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);
}