mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2025-06-05 00:55:22 +00:00
19 lines
509 B
Python
19 lines
509 B
Python
import multiprocessing
|
|
|
|
from nonebot.plugin import PluginMetadata
|
|
from liteyuki.comm import get_channel
|
|
from .rt_guide import *
|
|
from .crt_matchers 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,
|
|
}
|
|
) |