zhamao-framework/src/Custom/global_function.php

11 lines
158 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
use ZM\Utils\CoroutinePool;
function pgo(callable $func, string $name = 'default')
{
CoroutinePool::go($func, $name);
2020-09-29 15:07:43 +08:00
}