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