Files
kittycad.py/kittycad/models/start_path.py

8 lines
183 B
Python
Raw Normal View History

from pydantic import BaseModel, ConfigDict
class StartPath(BaseModel):
"""The response from the `StartPath` endpoint."""
model_config = ConfigDict(protected_namespaces=())