koel/app/Services/Contracts/ObjectStorageInterface.php
2024-07-06 17:44:46 +02:00

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;
}