hyperf-chat/app/Constants/RobotConstant.php

19 lines
246 B
PHP
Raw Normal View History

2021-07-25 22:57:41 +08:00
<?php
2021-09-11 12:41:28 +08:00
declare(strict_types=1);
2021-07-25 22:57:41 +08:00
namespace App\Constants;
/**
* 定义系统机器人ID
*
* @package App\Constants
*/
class RobotConstant
{
// 登录机器人
const LOGIN_ROBOT = 1;
2021-09-12 16:23:43 +08:00
// 聊天机器人
const TALK_ROBOT = 2;
2021-07-25 22:57:41 +08:00
}