This commit is contained in:
2021-04-12 00:43:27 -04:00
parent fef167c46e
commit 35bcbd1979
10 changed files with 120 additions and 13 deletions

8
app/setup/api/setups.php Normal file
View File

@ -0,0 +1,8 @@
<?php
use Psr\Container\ContainerInterface as Container;
return [
GuzzleHttp\ClientInterface::class => function(Container $c) {
return new GuzzleHttp\Client();
}
];