Skip to main content

koel/koel

17162 stars
1 code files
View koel/koel on GitHub

app/Providers/YouTubeServiceProvider.php

Open in GitHub
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));
}
}