2024-04-22 21:05:35 +08:00
|
|
|
from nonebot.plugin import PluginMetadata
|
|
|
|
from .rt_guide import *
|
2024-05-25 12:09:54 +08:00
|
|
|
from .crt_matchers import *
|
2024-04-22 21:05:35 +08:00
|
|
|
|
|
|
|
__plugin_meta__ = PluginMetadata(
|
|
|
|
name="CRT生成工具",
|
|
|
|
description="一些CRT牌子生成器",
|
|
|
|
usage="我觉得你应该会用",
|
|
|
|
type="application",
|
|
|
|
homepage="https://github.com/snowykami/LiteyukiBot",
|
|
|
|
extra={
|
|
|
|
"liteyuki" : True,
|
|
|
|
"toggleable" : True,
|
|
|
|
"default_enable": True,
|
|
|
|
}
|
|
|
|
)
|