novaconium/defaults/App/routes.php

9 lines
116 B
PHP
Raw Normal View History

2024-08-30 05:05:31 +00:00
<?php
$routes = [
'/about' => [
2024-09-16 13:47:00 +00:00
'get' => 'about'
2024-08-30 05:05:31 +00:00
],
'/' => [
2024-09-16 13:47:00 +00:00
'get' => 'index'
2024-08-30 05:05:31 +00:00
]
];