summaryrefslogtreecommitdiffstats
path: root/getJSON.php
blob: 05bf095e820798d6d9e2203b7bb0c2859f307449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/**
 * COPS (Calibre OPDS PHP Server) HTML main script
 *
 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
 * @author     Sébastien Lucas <sebastien@slucas.fr>
 *
 */

require_once('config.php');

header('Content-Type:application/json;charset=utf-8');

echo json_encode(JSONRenderer::getJson());