koel/app/Services/Streamers/StreamerInterface.php
2018-08-22 19:59:36 +02:00

12 lines
168 B
PHP

<?php
namespace App\Services\Streamers;
use App\Models\Song;
interface StreamerInterface
{
public function setSong(Song $song);
public function stream();
}