mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-04 21:06:03 +00: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
|