mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 05:38:06 +03:00
16 lines
353 B
PHP
16 lines
353 B
PHP
<?php
|
|
use Shlinkio\Shlink\CLI\Command;
|
|
|
|
return [
|
|
|
|
'cli' => [
|
|
'commands' => [
|
|
Command\GenerateShortcodeCommand::class,
|
|
Command\ResolveUrlCommand::class,
|
|
Command\ListShortcodesCommand::class,
|
|
Command\GetVisitsCommand::class,
|
|
Command\ProcessVisitsCommand::class,
|
|
]
|
|
],
|
|
|
|
];
|