improve module interface

This commit is contained in:
root
2026-01-07 00:06:38 -05:00
parent 3324157ed9
commit 6d0c5584bd
3 changed files with 32 additions and 11 deletions

View File

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