mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-17 20:54:52 +08:00
11 lines
158 B
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);
|
|
}
|