Initial commit

This commit is contained in:
2025-03-10 16:43:56 +01:00
commit 3b929684f9
3 changed files with 40 additions and 0 deletions

15
src/SlotDbClient.php Normal file
View File

@ -0,0 +1,15 @@
<?php
namespace SlotDb\Client;
use Psr\Http\Client\ClientInterface;
class SlotDbClient
{
public function __construct(
private readonly ClientInterface $client
)
{
}
}