Files
Gitea-PHP-API/Classes/Endpoint/EndpointInterface.php
Michael Gerdemann 5aaff48c99 feat: Add basic client and first basic endpoint
Adds the client with first basic authentication and
the first endpoint `repositories` with first method.
2020-01-17 08:38:49 +01:00

15 lines
155 B
PHP

<?php
declare(strict_types=1);
namespace Avency\Gitea\Endpoint;
use Avency\Gitea\Client;
/**
* Endpoint interface
*/
interface EndpointInterface
{
}