updated defaults from examples

This commit is contained in:
2024-09-27 12:58:19 -07:00
parent 7cd3071905
commit 0d4b62ffb9
10 changed files with 37 additions and 8 deletions

9
defaults/App/routes.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
$routes = [
'/about' => [
'get' => 'about'
],
'/' => [
'get' => 'index'
]
];