mirror of
https://github.com/shlinkio/shlink.git
synced 2025-04-02 14:55:37 +03:00
15 lines
327 B
PHP
15 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'],
|
|
],
|
|
],
|
|
|
|
];
|