Files
wh-api/app/Amqp/Producer/AliSlsProducer.php
ykxiao 0b2299c427
Some checks failed
Build Docker / build (push) Has been cancelled
协程版仓库后端项目
2025-07-08 14:59:47 +08:00

13 lines
213 B
PHP

<?php
declare(strict_types=1);
namespace App\Amqp\Producer;
use Hyperf\Amqp\Annotation\Producer;
#[Producer(exchange: 'wh_ali_sls', routingKey: 'wh_ali_sls_key')]
class AliSlsProducer extends BaseProducer
{
}