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

8 lines
138 B
PHP
Raw Normal View History

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