koel/app/Http/Streamers/StreamerInterface.php
2015-12-13 12:42:28 +08:00

11 lines
148 B
PHP

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