You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

hole.py 179B

1234567891011
  1. from pydantic import BaseModel
  2. from million.model.message import Message
  3. class Hole(BaseModel):
  4. start: int
  5. end: int
  6. start_message: Message
  7. end_message: Message