mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-acgnshow.git
synced 2025-09-05 19:56:25 +00:00
✨添加插件用法,更改配置项名称
This commit is contained in:
@ -4,14 +4,28 @@ require("nonebot_plugin_alconna")
|
||||
from .acgnshower import *
|
||||
from nonebot import get_driver
|
||||
from .config import ConfigModel
|
||||
usage = """命令格式:
|
||||
展览 <地区> [页码]
|
||||
或
|
||||
<地区>展览 [页码]
|
||||
其中地区为省级行政区或地级行政区(不包含后缀)
|
||||
(如北京,福建,平顶山,绍兴,香港...,或海外/全国)
|
||||
|
||||
示例:
|
||||
展览 福建 2
|
||||
福建展览 2
|
||||
全国展览
|
||||
海外展览"""
|
||||
__author__ = "Asankilp"
|
||||
__plugin_meta__ = PluginMetadata(
|
||||
name="漫展/展览查询",
|
||||
description="从哔哩哔哩会员购获取简易展览数据",
|
||||
usage="application",
|
||||
usage=usage,
|
||||
type="application",
|
||||
config=ConfigModel,
|
||||
homepage="https://github.com/LiteyukiStudio/nonebot-plugin-acgnshow",
|
||||
supported_adapters=inherit_supported_adapters("nonebot_plugin_alconna")
|
||||
supported_adapters=inherit_supported_adapters("nonebot_plugin_alconna"),
|
||||
extra={"License":"MIT","Author":"Asankilp"}
|
||||
)
|
||||
driver = get_driver()
|
||||
|
||||
|
Reference in New Issue
Block a user