mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-28 06:55:36 +08:00
38 lines
1002 B
Python
38 lines
1002 B
Python
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.abspath(".."))
|
|
|
|
import nonebot
|
|
from nonebot.log import logger, default_format
|
|
from nonebot.adapters.ding import Bot as DingBot
|
|
from nonebot.adapters.mirai import Bot as MiraiBot
|
|
from nonebot.adapters.feishu import Bot as FeishuBot
|
|
|
|
# test custom log
|
|
logger.add(
|
|
"error.log", rotation="00:00", diagnose=False, level="ERROR", format=default_format
|
|
)
|
|
|
|
nonebot.init(custom_config2="config on init")
|
|
app = nonebot.get_asgi()
|
|
driver = nonebot.get_driver()
|
|
driver.register_adapter("ding", DingBot)
|
|
driver.register_adapter("mirai", MiraiBot)
|
|
driver.register_adapter("feishu", FeishuBot)
|
|
|
|
# load builtin plugin
|
|
nonebot.load_builtin_plugins()
|
|
|
|
# load all plugins
|
|
nonebot.load_from_toml("plugins.toml")
|
|
|
|
# modify some config / config depends on loaded configs
|
|
config = driver.config
|
|
config.custom_config3 = config.custom_config1
|
|
config.custom_config4 = "New custom config"
|
|
|
|
if __name__ == "__main__":
|
|
nonebot.run(app="__mp_main__:app")
|
|
# nonebot.run()
|