mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-24 19:24:22 +01:00
10 lines
159 B
Python
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)
|