mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
8 lines
137 B
PHP
8 lines
137 B
PHP
<?php
|
|
|
|
namespace App\Values\SongStorageMetadata;
|
|
|
|
abstract class SongStorageMetadata
|
|
{
|
|
abstract public function getPath(): string;
|
|
}
|