added examples

This commit is contained in:
2024-08-29 22:05:31 -07:00
parent 5f6b53a3b9
commit 1f7f76ade5
6 changed files with 31 additions and 0 deletions

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

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