Files
cunkebao_v3/Server/extend/aliyun-oss-php-sdk-2.4.1/samples/Config.php
2025-03-18 14:39:17 +08:00

16 lines
370 B
PHP

<?php
/**
* Class Config
*
* Make configurations required by the sample.
* Users can run RunAll.php which runs all the samples after configuring Endpoint, AccessId, and AccessKey.
*/
final class Config
{
const OSS_ACCESS_ID = 'update me';
const OSS_ACCESS_KEY = 'update me';
const OSS_ENDPOINT = 'update me';
const OSS_TEST_BUCKET = 'update me';
}