1
0
Fork 0
forked from deblan/gist
gist/app/bootstrap.php.d/60-api.php
2015-11-07 22:13:08 +01:00

9 lines
206 B
PHP

<?php
use Gist\Api\Client;
$app['api_client'] = function ($app) {
// return new Client(['base_uri' => 'https://gist.deblan.org/']);
return new Client(['base_uri' => 'http://localhost:8080/']);
};