2013-02-17 21:48:21 -05:00
|
|
|
<?php
|
|
|
|
|
2016-08-18 21:02:49 -04:00
|
|
|
require __DIR__.'/app/common.php';
|
2014-02-08 14:13:14 -05:00
|
|
|
|
2016-08-18 21:02:49 -04:00
|
|
|
Router\bootstrap(
|
|
|
|
__DIR__.'/app/controllers',
|
|
|
|
'common',
|
|
|
|
'console',
|
|
|
|
'user',
|
|
|
|
'config',
|
|
|
|
'item',
|
|
|
|
'history',
|
|
|
|
'bookmark',
|
|
|
|
'feed',
|
|
|
|
'search'
|
|
|
|
);
|
2014-02-08 14:13:14 -05:00
|
|
|
|
|
|
|
Router\notfound(function() {
|
|
|
|
Response\redirect('?action=unread');
|
|
|
|
});
|