mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 09:57:25 +08:00
16 lines
420 B
Python
16 lines
420 B
Python
|
from nonebot.plugin import PluginMetadata
|
||
|
from .rt_guide import *
|
||
|
|
||
|
__plugin_meta__ = PluginMetadata(
|
||
|
name="CRT生成工具",
|
||
|
description="一些CRT牌子生成器",
|
||
|
usage="我觉得你应该会用",
|
||
|
type="application",
|
||
|
homepage="https://github.com/snowykami/LiteyukiBot",
|
||
|
extra={
|
||
|
"liteyuki" : True,
|
||
|
"toggleable" : True,
|
||
|
"default_enable": True,
|
||
|
}
|
||
|
)
|