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