presenton/electron/servers/fastapi/models/json_path_guide.py
2026-02-20 12:02:23 +05:45

14 lines
217 B
Python

from typing import List
from pydantic import BaseModel
class DictGuide(BaseModel):
key: str
class ListGuide(BaseModel):
index: int
class JsonPathGuide(BaseModel):
guides: List[DictGuide | ListGuide]