fix(plugin): correct knows issues

This commit is contained in:
xboard 2025-02-09 23:45:23 +08:00
parent b1116e73c0
commit 5dc1160666

View File

@ -289,6 +289,11 @@ class PluginManager
'updated_at' => now(), 'updated_at' => now(),
]); ]);
// 初始化插件
if (method_exists($plugin, 'boot')) {
$plugin->boot();
}
return true; return true;
} }