blob: 33c871baa7850481ca1d6f13d9803dca1cfb23d3 (
plain)
1
2
3
4
5
6
7
8
|
<?php /* Copyright (c) 2024 Freya Murphy */
$routes = array();
$routes['home'] = 'apps/home';
$routes['error'] = 'apps/error';
$routes['auth'] = 'apps/auth';
$routes[''] = '_index';
|