summaryrefslogtreecommitdiffhomepage
path: root/packages/sdk/python/src/opencode_ai/models/layout_config.py
blob: 51d0c0b1dbd620a431a9c5317369a916bc01ef7c (plain)
1
2
3
4
5
6
7
8
9
from enum import Enum


class LayoutConfig(str, Enum):
    AUTO = "auto"
    STRETCH = "stretch"

    def __str__(self) -> str:
        return str(self.value)