Files
shop-platform/src/app/event/wechat/WeappShareConfig.php
2026-01-17 10:48:02 +08:00

19 lines
282 B
PHP

<?php
namespace app\event\wechat;
use app\model\share\WeappShare as ShareModel;
/**
* 获取分享配置
*/
class WeappShareConfig
{
public function handle($param)
{
$share_model = new ShareModel();
return $share_model->getShareConfig($param);
}
}