mirror of
https://github.com/koel/koel
synced 2024-11-28 06:50:27 +00:00
14 lines
234 B
PHP
14 lines
234 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services;
|
||
|
|
||
|
use App\Models\Song;
|
||
|
|
||
|
interface ObjectStorageInterface
|
||
|
{
|
||
|
/**
|
||
|
* Get a song's Object Storage url for streaming or downloading.
|
||
|
*/
|
||
|
public function getSongPublicUrl(Song $song): string;
|
||
|
}
|