mirror of
https://github.com/koel/koel
synced 2024-12-18 16:44:03 +00:00
8 lines
123 B
PHP
8 lines
123 B
PHP
<?php
|
|
|
|
namespace App\Values\SongStorageMetadata;
|
|
|
|
interface SongStorageMetadata
|
|
{
|
|
public function getPath(): string;
|
|
}
|