mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
9 lines
119 B
PHP
9 lines
119 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Values\SongStorageMetadata;
|
||
|
|
||
|
interface StorageMetadata
|
||
|
{
|
||
|
public function getPath(): string;
|
||
|
}
|