mirror of
https://github.com/shadoll/scatcher.git
synced 2025-12-20 02:26:03 +00:00
8 lines
127 B
Python
8 lines
127 B
Python
from pydantic import BaseModel
|
|
from schema.status import Status
|
|
|
|
|
|
class Answer(BaseModel):
|
|
status: Status
|
|
message: str
|