20250303#2

This commit is contained in:
User
2025-03-03 14:25:44 +03:00
parent fee7f1466c
commit 70810412f4
20 changed files with 25 additions and 28 deletions

19
config/app-cli.php Normal file
View File

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