feat: console commands

Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
2026-05-08 00:04:22 -04:00
parent d8cff9c2ed
commit 1eb5f49a26
5 changed files with 975 additions and 8 deletions

View File

@@ -14,10 +14,10 @@ use KTXF\Module\ModuleBrowserInterface;
use KTXF\Module\ModuleConsoleInterface;
use KTXF\Module\ModuleInstanceAbstract;
use KTXF\Resource\Provider\ProviderInterface;
use KTXM\ProviderImap\Console\ServiceConnectCommand;
use KTXM\ProviderImap\Console\ServiceDiscoverCommand;
use KTXM\ProviderImap\Console\ServiceDisconnectCommand;
use KTXM\ProviderImap\Console\ServiceTestCommand;
use KTXM\ProviderImap\Console\ConnectCommand;
use KTXM\ProviderImap\Console\DiscoverCommand;
use KTXM\ProviderImap\Console\DisconnectCommand;
use KTXM\ProviderImap\Console\TestCommand;
use KTXM\ProviderImap\Providers\Provider as MailProvider;
/**
@@ -75,10 +75,10 @@ class Module extends ModuleInstanceAbstract implements ModuleConsoleInterface, M
public function registerCI(): array
{
return [
ServiceDiscoverCommand::class,
ServiceConnectCommand::class,
ServiceDisconnectCommand::class,
ServiceTestCommand::class,
DiscoverCommand::class,
ConnectCommand::class,
DisconnectCommand::class,
TestCommand::class,
];
}