mirror of
https://github.com/lsky-org/lsky-pro.git
synced 2025-01-09 04:19:32 +08:00
22 lines
395 B
PHP
22 lines
395 B
PHP
<?php
|
|
|
|
namespace App\Enums\Scan;
|
|
|
|
final class TencentOption
|
|
{
|
|
/** @var string SecretId */
|
|
const SecretId = 'secret_id';
|
|
|
|
/** @var string SecretKey */
|
|
const SecretKey = 'secret_key';
|
|
|
|
/** @var string Region */
|
|
const Region = 'region';
|
|
|
|
/** @var string Endpoint */
|
|
const Endpoint = 'endpoint';
|
|
|
|
/** @var string 业务场景 */
|
|
const BizType = 'biz_type';
|
|
}
|