miniflux-legacy/index.php

11 lines
252 B
PHP
Raw Normal View History

2013-02-17 21:48:21 -05:00
<?php
2014-02-08 14:13:14 -05:00
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');
});