mirror of
https://github.com/koel/koel
synced 2024-12-19 17:13:09 +00:00
10 lines
179 B
PHP
10 lines
179 B
PHP
<?php
|
|
|
|
namespace App\Services\Streamer\Adapters;
|
|
|
|
use App\Models\Song;
|
|
|
|
interface StreamerAdapter
|
|
{
|
|
public function stream(Song $song, array $config = []); // @phpcs:ignore
|
|
}
|