mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
16 lines
369 B
PHP
16 lines
369 B
PHP
|
<?php
|
||
|
/**
|
||
|
* poche, a read it later open source system
|
||
|
*
|
||
|
* @category poche
|
||
|
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
|
||
|
* @copyright 2013
|
||
|
* @license http://www.wtfpl.net/ see COPYING file
|
||
|
*/
|
||
|
define ('DB_PATH', 'sqlite:./db/poche.sqlite');
|
||
|
|
||
|
include 'db.php';
|
||
|
include 'functions.php';
|
||
|
require_once 'Readability.php';
|
||
|
require_once 'Encoding.php';
|
||
|
?>
|