koel/app/Services/Streamers/StreamerInterface.php
2017-04-20 19:20:32 +08:00

11 lines
152 B
PHP

<?php
namespace App\Services\Streamers;
interface StreamerInterface
{
/**
* Stream the current song.
*/
public function stream();
}