implement console

This commit is contained in:
root
2026-01-07 00:05:55 -05:00
parent 965d839a8c
commit 3324157ed9
7 changed files with 1064 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace KTXF\Module;
/**
* Module Console Interface
*/
interface ModuleConsoleInterface
{
public function registerCI(): array;
}