Files
wh-api/app/Process/WhfConsumerProcess.php
ykxiao 8a3ab17b25
Some checks failed
Build Docker / build (push) Has been cancelled
增加基础配置
2025-07-12 11:59:33 +08:00

15 lines
266 B
PHP

<?php
declare(strict_types=1);
namespace App\Process;
use Hyperf\AsyncQueue\Process\ConsumerProcess;
use Hyperf\Process\Annotation\Process;
#[Process(name: 'async-queue')]
class WhfConsumerProcess extends ConsumerProcess
{
protected string $queue = 'whf';
}