feat: add Plugins module with base files for plugins architecture

This commit is contained in:
Yassine Doghri 2024-04-28 17:14:45 +00:00
commit 7253e13ac2
13 changed files with 174 additions and 0 deletions

View file

@ -0,0 +1,18 @@
<?php
declare(strict_types=1);
namespace Modules\Fediverse\Commands;
use CodeIgniter\CLI\BaseCommand;
class InstallCommand extends BaseCommand
{
/**
* @param array<int|string, string|null> $params
*/
public function run(array $params): void
{
// TODO:
}
}