mirror of
https://github.com/koel/koel
synced 2025-01-05 09:18:51 +00:00
10 lines
191 B
PHP
10 lines
191 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
interface ApiConsumerInterface
|
|
{
|
|
public function getEndpoint(): string;
|
|
public function getKey(): ?string;
|
|
public function getSecret(): ?string;
|
|
}
|