mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
15 lines
250 B
PHP
15 lines
250 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
interface ApiConsumerInterface
|
|
{
|
|
/** @return string */
|
|
public function getEndpoint();
|
|
|
|
/** @return string */
|
|
public function getKey();
|
|
|
|
/** @return string|null */
|
|
public function getSecret();
|
|
}
|