module manager

This commit is contained in:
2024-09-12 16:01:04 +03:00
parent 2105c7bc61
commit 95e80ab87b
21 changed files with 254 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
namespace kernel;
abstract class Module
{
abstract public function init();
}