mirror of
https://github.com/Karaka-Management/oms-Admin.git
synced 2026-01-22 10:18:40 +00:00
13 lines
204 B
PHP
13 lines
204 B
PHP
<?php
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^$' => [
|
|
[
|
|
'dest' => '\Modules\Admin\ConsoleController:viewEmptyCommand',
|
|
'verb' => RouteVerb::ANY,
|
|
],
|
|
],
|
|
];
|