mirror of
https://github.com/koel/koel
synced 2024-11-28 15:00:42 +00:00
11 lines
167 B
PHP
11 lines
167 B
PHP
<?php
|
|
|
|
namespace App\Services\Streamers;
|
|
|
|
use App\Models\Song;
|
|
|
|
interface StreamerInterface
|
|
{
|
|
public function setSong(Song $song);
|
|
public function stream();
|
|
}
|