novaconium/examples/App/routes.php

9 lines
116 B
PHP
Raw Permalink Normal View History

2024-08-29 22:05:31 -07:00
<?php
$routes = [
'/about' => [
2024-09-16 06:47:00 -07:00
'get' => 'about'
2024-08-29 22:05:31 -07:00
],
'/' => [
2024-09-16 06:47:00 -07:00
'get' => 'index'
2024-08-29 22:05:31 -07:00
]
];