Files
opencode/packages/sdk/python/src/opencode_ai/models/layout_config.py
Kevin King 0e60f66604 ignore: python sdk (#2779)
Co-authored-by: Aiden Cline <aidenpcline@gmail.com>
2025-10-28 18:32:45 -05:00

10 lines
159 B
Python

from enum import Enum
class LayoutConfig(str, Enum):
AUTO = "auto"
STRETCH = "stretch"
def __str__(self) -> str:
return str(self.value)