You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
370 B
16 lines
370 B
12 months ago
|
<?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';
|
||
|
}
|