mirror of
https://github.com/koel/koel
synced 2024-11-28 15:00:42 +00:00
12 lines
148 B
PHP
12 lines
148 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Streamers;
|
||
|
|
||
|
interface StreamerInterface
|
||
|
{
|
||
|
/**
|
||
|
* Stream the current song.
|
||
|
*/
|
||
|
public function stream();
|
||
|
}
|