mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
13 lines
234 B
PHP
13 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;
|
|
}
|