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