Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
lgc2333 authored Apr 10, 2024
1 parent 659ac6b commit efbc582
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nonebot_plugin_callapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
from nonebot.plugin import PluginMetadata, require
from nonebot.plugin import PluginMetadata, inherit_supported_adapters, require

require("nonebot_plugin_saa")
require("nonebot_plugin_alconna")

from .__main__ import HELP_TEXT # noqa: E402
from .config import ConfigModel # noqa: E402

__version__ = "0.2.0"
__version__ = "0.2.0.post1"
__plugin_meta__ = PluginMetadata(
name="CallAPI",
description="使用指令来调用 Bot 的 API",
usage=HELP_TEXT,
homepage="https://github.com/lgc-NB2Dev/nonebot-plugin-callapi",
type="application",
config=ConfigModel,
supported_adapters=None,
supported_adapters=inherit_supported_adapters("nonebot_plugin_alconna"),
extra={"License": "MIT", "Author": "student_2333"},
)

0 comments on commit efbc582

Please sign in to comment.