hyperf-chat/app/Constant/FileDriveConstant.php

11 lines
157 B
PHP
Raw Permalink Normal View History

2022-01-16 10:29:16 +08:00
<?php
declare(strict_types=1);
2022-01-22 20:08:19 +08:00
namespace App\Constant;
2022-01-16 10:29:16 +08:00
class FileDriveConstant
{
const Local = 1; // 本地系统
const Cos = 2; // Cos 存储
}