2025-06-05 19:38:44 +02:00

10 lines
239 B
PHP

<?php
use Lycoreco\Apps\Index\Controllers;
use Lycoreco\Includes\Routing\Path;
$index_urls = [
new Path('', new Controllers\HomepageController(), 'home'),
new Path('/terms-of-use', new Controllers\TermsController(), 'terms'),
];