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