mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-16 04:57:46 +02:00
feat: add Plugins module with base files for plugins architecture
This commit is contained in:
parent
3fd5efc795
commit
7253e13ac2
13 changed files with 174 additions and 0 deletions
18
modules/Plugins/Commands/InstallCommand.php
Normal file
18
modules/Plugins/Commands/InstallCommand.php
Normal 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:
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue