mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
16 lines
327 B
PHP
16 lines
327 B
PHP
<?php
|
|
use Acelaya\UrlShortener\Middleware\CliRoutable;
|
|
|
|
return [
|
|
|
|
'routes' => [
|
|
[
|
|
'name' => 'cli-generate-shortcode',
|
|
'path' => '/generate-shortcode',
|
|
'middleware' => CliRoutable\GenerateShortcodeMiddleware::class,
|
|
'allowed_methods' => ['CLI'],
|
|
],
|
|
],
|
|
|
|
];
|