mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-17 15:59:56 +03:00
15 lines
245 B
PHP
15 lines
245 B
PHP
<?php
|
|
return [
|
|
|
|
'routes' => [
|
|
[
|
|
'name' => 'cli',
|
|
'path' => '/command-name',
|
|
'middleware' => function ($req, $resp) {
|
|
|
|
},
|
|
'allowed_methods' => ['CLI'],
|
|
],
|
|
],
|
|
|
|
];
|