shlink/config/autoload/cli-routes.global.php
2016-04-17 10:46:35 +02:00

16 lines
245 B
PHP

<?php
return [
'routes' => [
[
'name' => 'cli',
'path' => '/command-name',
'middleware' => function ($req, $resp) {
},
'allowed_methods' => ['CLI'],
],
],
];