mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
14 lines
310 B
PHP
14 lines
310 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Services\YouTubeService;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class YouTubeServiceProvider extends ServiceProvider
|
|
{
|
|
public function register(): void
|
|
{
|
|
app()->singleton('YouTube', static fn (): YouTubeService => app(YouTubeService::class));
|
|
}
|
|
}
|