24 lines
435 B
PHP
24 lines
435 B
PHP
<?php
|
|
|
|
namespace extend\chat\model;
|
|
|
|
use ba\Exception;
|
|
use ba\Random;
|
|
use support\Redis;
|
|
use support\think\Db;
|
|
use GatewayWorker\Lib\Gateway;
|
|
use support\Log;
|
|
use think\Model;
|
|
|
|
/**
|
|
* 管理端小程序
|
|
*/
|
|
class OnbocChat extends Base
|
|
{
|
|
// 初始化
|
|
public static function init(string $client_id, array $message):void
|
|
{
|
|
print_r(date('H:i:s') . '--初始化运营聊天' . $client_id . $client_id . "\r\n");
|
|
}
|
|
|
|
} |