mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-25 01:25:04 +08:00
39 lines
1001 B
Python
39 lines
1001 B
Python
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.abspath(".."))
|
|
|
|
import nonebot
|
|
from nonebot.adapters.cqhttp import Bot
|
|
from nonebot.adapters.ding import Bot as DingBot
|
|
from nonebot.adapters.mirai import Bot as MiraiBot
|
|
from nonebot.log import logger, default_format
|
|
|
|
# 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("cqhttp", Bot)
|
|
driver.register_adapter("ding", DingBot)
|
|
driver.register_adapter("mirai", MiraiBot)
|
|
|
|
# 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")
|