mirror of
https://github.com/FutureOfMedTech-FITM-hack/backend.git
synced 2025-10-18 09:34:18 +03:00
8 lines
109 B
Python
8 lines
109 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class Message(BaseModel):
|
|
"""Simple message model."""
|
|
|
|
message: str
|