mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
21 lines
333 B
PHP
21 lines
333 B
PHP
<?php
|
|
|
|
namespace App\Services\ApiClients;
|
|
|
|
class ITunesClient extends ApiClient
|
|
{
|
|
public function getKey(): ?string
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public function getSecret(): ?string
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public function getEndpoint(): ?string
|
|
{
|
|
return config('koel.itunes.endpoint');
|
|
}
|
|
}
|