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