mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-16 11:42:44 +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
|