mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 06:27:23 +08:00
40 lines
538 B
Python
40 lines
538 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.6"
|
|
|
|
|