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

9 lines
206 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-11-07 22:13:08 +01:00
// return new Client(['base_uri' => 'https://gist.deblan.org/']);
return new Client(['base_uri' => 'http://localhost:8080/']);
2015-07-19 18:19:43 +02:00
};