mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 04:07:23 +08:00
41 lines
629 B
Python
41 lines
629 B
Python
from liteyuki.bot import (
|
|
LiteyukiBot,
|
|
get_bot,
|
|
get_config,
|
|
get_config_with_compat
|
|
)
|
|
|
|
from liteyuki.comm import (
|
|
Channel,
|
|
Event
|
|
)
|
|
|
|
from liteyuki.plugin import (
|
|
load_plugin,
|
|
load_plugins
|
|
)
|
|
|
|
from liteyuki.log import (
|
|
init_log,
|
|
logger
|
|
)
|
|
|
|
__all__ = [
|
|
"LiteyukiBot",
|
|
"get_bot",
|
|
"get_config",
|
|
"get_config_with_compat",
|
|
"Channel",
|
|
"Event",
|
|
"load_plugin",
|
|
"load_plugins",
|
|
"init_log",
|
|
"logger",
|
|
]
|
|
|
|
__version__ = "6.3.8" # 测试版本号
|
|
|
|
# 6.3.8
|
|
# 1. 初步添加对聊天的支持
|
|
# 2. 优化了通道的性能
|