mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 11:29:39 +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
|