20250302#1

This commit is contained in:
User
2025-03-02 23:46:57 +03:00
parent 133371a908
commit a05a8c8dd1
10 changed files with 135 additions and 38 deletions

View File

@@ -0,0 +1,19 @@
<?php
# Example:
# ['key'=>'/', "action"=>"App\\Main\\Controllers\\IndexController", "method"=>"index"],
# ['key'=>'', 'router'=>'application/config/routes-cli/routes.php'],
# ['key'=>'/', 'router'=>[]],
return [
['key'=>'', 'router'=>[
[
'key'=>'index',
'routes' => [
[
'action' => "App\Infrastructure\Handlers\IndexHandler",
'method' => "index"
]
]
]
]],
];