mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-31 21:50:53 +00:00
9 lines
159 B
Python
9 lines
159 B
Python
from enum import Enum
|
|
|
|
|
|
class LayoutConfig(str, Enum):
|
|
AUTO = "auto"
|
|
STRETCH = "stretch"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|