miniflux-legacy/index.php
2015-08-28 21:34:34 -04:00

11 lines
252 B
PHP

<?php
require __DIR__.'/common.php';
Router\bootstrap(__DIR__.'/controllers', 'common', 'console', 'user', 'config', 'item', 'history', 'bookmark', 'feed');
// Page not found
Router\notfound(function() {
Response\redirect('?action=unread');
});