mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
13 lines
199 B
PHP
13 lines
199 B
PHP
<?php
|
|
|
|
namespace App\Services\Streamers;
|
|
|
|
use App\Models\Song;
|
|
|
|
interface StreamerInterface
|
|
{
|
|
public function setSong(Song $song): void;
|
|
|
|
/** @return mixed */
|
|
public function stream();
|
|
}
|