Revert "refactor: core plugins to plugins-core"

This reverts commit c0b6ee1763.
This commit is contained in:
Xboard
2026-04-19 08:06:51 +00:00
parent c36054b970
commit e61e3b6563
25 changed files with 107 additions and 137 deletions
+2 -5
View File
@@ -22,11 +22,8 @@ class PluginServiceProvider extends ServiceProvider
public function boot(): void
{
foreach (['plugins', 'plugins-core'] as $dir) {
$path = base_path($dir);
if (!file_exists($path)) {
mkdir($path, 0755, true);
}
if (!file_exists(base_path('plugins'))) {
mkdir(base_path('plugins'), 0755, true);
}
}
}