mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-25 10:20:18 -06:00
16 lines
245 B
PHP
16 lines
245 B
PHP
<?php
|
|
return [
|
|
|
|
'routes' => [
|
|
[
|
|
'name' => 'cli',
|
|
'path' => '/command-name',
|
|
'middleware' => function ($req, $resp) {
|
|
|
|
},
|
|
'allowed_methods' => ['CLI'],
|
|
],
|
|
],
|
|
|
|
];
|