mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
20 lines
282 B
JavaScript
20 lines
282 B
JavaScript
// 运行在 Electron 主进程 下的插件入口
|
|
|
|
|
|
// 加载插件时触发
|
|
function onLoad(plugin) {
|
|
|
|
}
|
|
|
|
|
|
// 创建窗口时触发
|
|
function onBrowserWindowCreated(window, plugin) {
|
|
|
|
}
|
|
|
|
|
|
// 这两个函数都是可选的
|
|
module.exports = {
|
|
onLoad,
|
|
onBrowserWindowCreated
|
|
} |