diff --git a/nonebot_plugin_all4one/__init__.py b/nonebot_plugin_all4one/__init__.py index 1b23340..8225a32 100644 --- a/nonebot_plugin_all4one/__init__.py +++ b/nonebot_plugin_all4one/__init__.py @@ -1,12 +1,14 @@ from copy import deepcopy -from nonebot import on, get_driver from nonebot.matcher import Matcher from nonebot.adapters import Bot, Event from nonebot.plugin import PluginMetadata +from nonebot import on, require, get_driver from nonebot.exception import IgnoredException from nonebot.message import run_preprocessor, event_preprocessor +require("nonebot_plugin_datastore") + from .config import Config from .onebotimpl import OneBotImplementation