mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
22 lines
357 B
PHP
22 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');
|
||
|
}
|
||
|
}
|