miniflux-legacy/index.php

11 lines
262 B
PHP
Raw Normal View History

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