koel/app/Services/Streamers/StreamerInterface.php

12 lines
152 B
PHP
Raw Normal View History

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