-
Notifications
You must be signed in to change notification settings - Fork 604
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
311 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
from nonebot.plugin import PluginMetadata | ||
|
||
from zhenxun.configs.utils import PluginExtraData | ||
|
||
__plugin_meta__ = PluginMetadata( | ||
name="github订阅", | ||
description="订阅github用户或仓库", | ||
usage=""" | ||
usage: | ||
github新Comment,PR,Issue等提醒 | ||
指令: | ||
添加github ['用户'/'仓库'] [用户名/{owner/repo}] | ||
删除github [用户名/{owner/repo}] | ||
查看github | ||
示例:添加github订阅 用户 HibiKier | ||
示例:添加gb订阅 仓库 HibiKier/zhenxun_bot | ||
示例:添加github 用户 HibiKier | ||
示例:删除gb订阅 HibiKier | ||
""".strip(), | ||
extra=PluginExtraData( | ||
author="xuanerwa", | ||
version="0.7", | ||
).dict(), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from nonebot.plugin import PluginMetadata | ||
|
||
from zhenxun.configs.utils import PluginExtraData | ||
|
||
__plugin_meta__ = PluginMetadata( | ||
name="鸡汤", | ||
description="喏,亲手为你煮的鸡汤", | ||
usage=""" | ||
不喝点什么感觉有点不舒服 | ||
指令: | ||
鸡汤 | ||
""".strip(), | ||
extra=PluginExtraData( | ||
author="HibiKier", | ||
version="0.1", | ||
).dict(), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
from nonebot.plugin import PluginMetadata | ||
|
||
from zhenxun.configs.utils import PluginExtraData | ||
|
||
__plugin_meta__ = PluginMetadata( | ||
name="识图", | ||
description="以图搜图,看破本源", | ||
usage=""" | ||
识别图片 [二次元图片] | ||
指令: | ||
识图 [图片] | ||
""".strip(), | ||
extra=PluginExtraData( | ||
author="HibiKier", | ||
version="0.1", | ||
menu_type="一些工具", | ||
).dict(), | ||
) |
Oops, something went wrong.