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

View File

@ -0,0 +1,14 @@
<?php
namespace kernel\modules\post;
use kernel\Module;
class PostModule extends Module
{
public function init()
{
// TODO: Implement init() method.
}
}

View File

@ -0,0 +1,8 @@
{
"name": "Post",
"version": "0.1",
"author": "ITGuild",
"slug": "post",
"description": "Post module",
"module_class": "PostModule"
}