1
0
mirror of https://gitnet.fr/deblan/gist.git synced 2021-08-14 08:30:49 +02:00
GIST/app/bootstrap.php.d/60-api.php
2017-04-24 01:11:39 +02:00

8 lines
160 B
PHP

<?php
use Gist\Api\Client;
$app['api_client'] = $app->share(function ($app) {
return new Client(['base_uri' => $app['settings']['api']['base_uri']]);
});