mirror of
https://github.com/avency/Gitea.git
synced 2025-10-28 18:24:58 +01:00
Adds the client with first basic authentication and the first endpoint `repositories` with first method.
15 lines
155 B
PHP
15 lines
155 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Avency\Gitea\Endpoint;
|
|
|
|
use Avency\Gitea\Client;
|
|
|
|
/**
|
|
* Endpoint interface
|
|
*/
|
|
interface EndpointInterface
|
|
{
|
|
}
|