mirror of
https://github.com/koel/koel
synced 2024-12-19 17:13:09 +00:00
8 lines
119 B
PHP
8 lines
119 B
PHP
<?php
|
|
|
|
namespace App\Values\SongStorageMetadata;
|
|
|
|
interface StorageMetadata
|
|
{
|
|
public function getPath(): string;
|
|
}
|