koel/app/Services/ApiClients/YouTubeClient.php
2022-08-08 18:00:59 +02:00

21 lines
357 B
PHP

<?php
namespace App\Services\ApiClients;
class YouTubeClient extends ApiClient
{
public function getKey(): ?string
{
return config('koel.youtube.key');
}
public function getSecret(): ?string
{
return null;
}
public function getEndpoint(): ?string
{
return config('koel.youtube.endpoint');
}
}