mirror of
https://github.com/koel/koel
synced 2025-03-02 06:07:10 +00:00
12 lines
193 B
PHP
12 lines
193 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
interface ApiConsumerInterface
|
|
{
|
|
public function getEndpoint(): string;
|
|
|
|
public function getKey(): ?string;
|
|
|
|
public function getSecret(): ?string;
|
|
}
|