mirror of
https://github.com/koel/koel
synced 2024-12-18 16:44:03 +00:00
11 lines
183 B
PHP
11 lines
183 B
PHP
<?php
|
|
|
|
namespace App\Values\SongStorageMetadata;
|
|
|
|
final class LegacyS3Metadata extends S3CompatibleMetadata
|
|
{
|
|
public function supported(): bool
|
|
{
|
|
return true;
|
|
}
|
|
}
|