2022-04-06 20:35:34 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
from pydantic import BaseModel
|
2022-04-06 20:35:34 -07:00
|
|
|
|
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
class Pong(BaseModel):
|
|
|
|
"""The response from the `/ping` endpoint."""
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
message: str
|