Add v0.0.1

This commit is contained in:
Sébastien Lucas 2012-05-28 07:01:33 +02:00
parent ecca561693
commit e47631b1d8
12 changed files with 1308 additions and 0 deletions

12
config.php Normal file
View file

@ -0,0 +1,12 @@
<?php
/**
* COPS (Calibre OPDS PHP Server) class file
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Sébastien Lucas <sebastien@slucas.fr>
*/
require_once 'config_default.php';
if (file_exists('config_local.php'))
require_once 'config_local.php';
?>