gist/app/bootstrap.php.d/60-api.php

8 lines
151 B
PHP
Raw Normal View History

2015-07-19 18:19:43 +02:00
<?php
use Gist\Api\Client;
$app['api_client'] = $app->share(function ($app) {
2015-11-07 22:15:26 +01:00
return new Client(['base_uri' => 'https://gist.deblan.org/']);
});