LiteyukiBot-TriM/src/plugins/liteyuki_smart_reply/__init__.py

18 lines
425 B
Python
Raw Normal View History

2024-06-26 05:52:04 +00:00
from nonebot.plugin import PluginMetadata
from .monitors import *
from .matchers import *
__author__ = "snowykami"
__plugin_meta__ = PluginMetadata(
name="轻雪智障回复",
description="",
usage="",
type="application",
homepage="https://github.com/snowykami/LiteyukiBot",
extra={
"liteyuki": True,
"toggleable" : True,
"default_enable" : True,
}
2024-06-01 17:32:52 +00:00
)