Help information with online resources
| 60 | |
| 61 | |
| 62 | class Help(BaseModel): |
| 63 | """Help information with online resources""" |
| 64 | |
| 65 | online: HttpUrl = Field(description="URL to online help resources") |
| 66 | |
| 67 | model_config = ConfigDict( |
| 68 | json_schema_extra={ |
| 69 | "example": {"online": "https://github.com/espressif/arduino-esp32"} |
| 70 | } |
| 71 | ) |
| 72 | |
| 73 | |
| 74 | class Board(BaseModel): |
no outgoing calls