mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 02:57:23 +08:00
✨ 新增开发者模式,快速运行插件
This commit is contained in:
parent
16df5706ff
commit
1d0b18291e
1
.gitignore
vendored
1
.gitignore
vendored
@ -48,4 +48,5 @@ prompt.txt
|
||||
|
||||
# pdm
|
||||
.pdm-python
|
||||
.pdm-build
|
||||
dist
|
26
liteyuki/dev/plugin.py
Normal file
26
liteyuki/dev/plugin.py
Normal file
@ -0,0 +1,26 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
Copyright (C) 2020-2024 LiteyukiStudio. All Rights Reserved
|
||||
|
||||
@Time : 2024/8/18 上午5:04
|
||||
@Author : snowykami
|
||||
@Email : snowykami@outlook.com
|
||||
@File : plugin.py
|
||||
@Software: PyCharm
|
||||
"""
|
||||
from pathlib import Path
|
||||
|
||||
from liteyuki.bot import LiteyukiBot
|
||||
from liteyuki.config import load_config_in_default
|
||||
|
||||
|
||||
def run_plugins(*module_path: str | Path):
|
||||
"""
|
||||
运行插件,无需手动初始化bot
|
||||
Args:
|
||||
module_path: 插件路径,参考`liteyuki.load_plugin`的函数签名
|
||||
"""
|
||||
cfg = load_config_in_default()
|
||||
cfg["liteyuki.plugins"] = cfg.get("liteyuki.plugins", []).extend(module_path)
|
||||
bot = LiteyukiBot(cfg)
|
||||
bot.run()
|
Loading…
Reference in New Issue
Block a user