mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
11 lines
152 B
PHP
11 lines
152 B
PHP
<?php
|
|
|
|
namespace App\Services\Streamers;
|
|
|
|
interface StreamerInterface
|
|
{
|
|
/**
|
|
* Stream the current song.
|
|
*/
|
|
public function stream();
|
|
}
|