Source code for kittycad.models.pong
from pydantic import BaseModel, ConfigDict
[docs]
class Pong(BaseModel):
"""The response from the `/ping` endpoint."""
message: str
model_config = ConfigDict(protected_namespaces=())
from pydantic import BaseModel, ConfigDict
[docs]
class Pong(BaseModel):
"""The response from the `/ping` endpoint."""
message: str
model_config = ConfigDict(protected_namespaces=())