mirror of
https://gitnet.fr/deblan/gist.git
synced 2021-08-14 08:30:49 +02:00
8 lines
160 B
PHP
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']]);
|
|
});
|