7 lines
153 B
PHP
7 lines
153 B
PHP
<?php /* Copyright (c) 2024 Freya Murphy */
|
|
|
|
$routes = array();
|
|
$routes['home'] = 'apps/home';
|
|
$routes['error'] = 'apps/error';
|
|
|
|
$routes[''] = '_index';
|