koel/app/Http/Streamers/StreamerInterface.php

12 lines
148 B
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
namespace App\Http\Streamers;
interface StreamerInterface
{
/**
* Stream the current song.
*/
public function stream();
}