mirror of
https://github.com/avency/Gitea.git
synced 2025-10-29 18:52:33 +01:00
feat: Add basic client and first basic endpoint
Adds the client with first basic authentication and the first endpoint `repositories` with first method.
This commit is contained in:
14
Classes/Endpoint/EndpointInterface.php
Normal file
14
Classes/Endpoint/EndpointInterface.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Avency\Gitea\Endpoint;
|
||||
|
||||
use Avency\Gitea\Client;
|
||||
|
||||
/**
|
||||
* Endpoint interface
|
||||
*/
|
||||
interface EndpointInterface
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user