updated routes for get and post

This commit is contained in:
2024-09-16 06:47:00 -07:00
parent 937e4581ba
commit b858af3b55
2 changed files with 13 additions and 3 deletions

View File

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