mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-16 19:57:04 +08:00
10 lines
146 B
Python
10 lines
146 B
Python
import pydantic
|
|
import mirai
|
|
|
|
|
|
class RuleJudgeResult(pydantic.BaseModel):
|
|
|
|
matching: bool = False
|
|
|
|
replacement: mirai.MessageChain = None
|