miniflux-legacy/index.php

21 lines
294 B
PHP

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